/* =========================================================
   FRAGRÂNCIA BINÁRIA — CLEANING & HOSPITALITY
========================================================= */

:root {
    --fb-dark: #081B2D;
    --fb-deep: #1A2233;
    --fb-pink: #FF2D8D;
    --fb-purple: #9B40FF;
    --fb-cyan: #00E0FF;
    --fb-white: #FFFFFF;
    --fb-muted: #AAB6C5;
    --fb-card: rgba(255, 255, 255, .075);
    --fb-border: rgba(255, 255, 255, .14);
    --fb-gradient: linear-gradient(135deg, var(--fb-pink), var(--fb-purple), var(--fb-cyan));
    --fb-font-title: 'Playfair Display', serif;
    --fb-font-body: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--fb-font-body);
    color: var(--fb-white);
    background: var(--fb-dark);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 45, 141, .20), transparent 26%),
        radial-gradient(circle at 85% 12%, rgba(0, 224, 255, .18), transparent 28%),
        linear-gradient(135deg, #081B2D 0%, #111C2C 50%, #071423 100%);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: .11;
    background-image:
        linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 52px 52px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--fb-font-title);
}

.text-gradient {
    background: var(--fb-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 110px 0;
}

.section-title {
    font-size: clamp(2.1rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
}

.section-subtitle {
    color: var(--fb-muted);
    line-height: 1.8;
    font-size: 1.02rem;
}

/* NAVBAR */

.fb-navbar {
    padding: 16px 0;
    min-height: 88px;
    transition: all .35s ease;
    background: transparent;
    z-index: 9999;
}

.fb-navbar.scrolled {
    padding: 8px 0;
    background: rgba(8, 27, 45, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

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

.navbar-brand {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 2rem;

}

.navbar-brand::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 0, 170, .65),
            rgba(0, 195, 255, .65),
            transparent);

    opacity: .65;
}

.brand-logo {
    display: block;
    width: auto;

    height: 118px;
    min-width: 260px;

    object-fit: contain;

    image-rendering: auto;

    transform: translateZ(0);
    backface-visibility: hidden;

    filter:
        drop-shadow(0 0 18px rgba(255, 0, 170, .18)) drop-shadow(0 0 24px rgba(0, 195, 255, .14));

    transition:
        transform .35s ease,
        opacity .35s ease;
}

/* navbar scroll */

.fb-navbar.scrolled .brand-logo {
    height: 118px;
}

/* hover */

.navbar-brand:hover .brand-logo {
    transform: scale(1.04);
}

.fb-navbar .nav-link {
    position: relative;
    color: rgba(255, 255, 255, .78);
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: .75rem .85rem;
    transition: all .3s ease;
}

.fb-navbar .nav-link:hover,
.fb-navbar .nav-link.active {
    color: var(--fb-cyan);
}

.fb-navbar .nav-link::after {
    content: '';
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .35rem;
    height: 2px;
    opacity: 0;
    transform: scaleX(.4);
    transform-origin: center;
    background: var(--fb-gradient);
    transition: all .3s ease;
}

.fb-navbar .nav-link:hover::after,
.fb-navbar .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.fb-navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: .55rem .7rem;
    background: rgba(255, 255, 255, .06);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* BUTTONS */

.btn-fb {
    border: 0;
    color: #fff;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: .82rem 1.35rem;
    border-radius: 999px;
    background: var(--fb-gradient);
    box-shadow:
        0 12px 28px rgba(0, 224, 255, .18),
        0 12px 30px rgba(255, 45, 141, .14);
    transition: all .3s ease;
}

.btn-fb:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 18px 40px rgba(0, 224, 255, .24),
        0 18px 40px rgba(255, 45, 141, .20);
}

.btn-outline-fb {
    border: 1px solid rgba(255, 255, 255, .20);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: .82rem 1.35rem;
    background: rgba(255, 255, 255, .04);
    transition: all .3s ease;
}

.btn-outline-fb:hover {
    color: #fff;
    border-color: var(--fb-cyan);
    background: rgba(0, 224, 255, .08);
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem .9rem;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    border-radius: 999px;
    color: rgba(255, 255, 255, .84);
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6.7rem);

    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -.04em;

    margin-bottom: 1.5rem;

    text-wrap: balance;
}

.hero-lead {
    display: inline-flex;
    align-items: center;
    color: var(--fb-muted);
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.85;
    max-width: 650px;
}

.hero-card {
    position: relative;
    padding: 18px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
    border: 1px solid var(--fb-border);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .35);
}

.hero-card img {
    width: 100%;
    display: block;
    border-radius: 25px;
}

.floating-card {
    position: absolute;
    left: -20px;
    bottom: 42px;
    max-width: 255px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(8, 27, 45, .82);
    border: 1px solid rgba(255, 255, 255, .13);
    backdrop-filter: blur(18px);
}

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

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 190px 0 140px;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(8, 27, 45, .30) 0%,
            rgba(8, 27, 45, .65) 100%);
}

.about-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.8rem;
}

.about-lead {
    max-width: 850px;
    margin: auto;
    color: var(--fb-muted);
    font-size: 1.15rem;
    line-height: 1.9;
}

.fb-breadcrumb {
    margin-bottom: 2rem;
    margin-top: 25px;
}

.fb-breadcrumb .breadcrumb-item,
.fb-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: .9rem;
}

.fb-breadcrumb .breadcrumb-item.active {
    color: var(--fb-cyan);
}

/* =========================================================
   SERVICES PAGE
========================================================= */
.services-hero {
    position: relative;
    overflow: hidden;
    padding: 190px 0 140px;
}

.service-highlight-box {
    padding: 40px;
    border-radius: 30px;
    background: var(--fb-card);
    border: 1px solid var(--fb-border);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.highlight-item:last-child {
    border-bottom: 0;
}

.highlight-item i {
    color: var(--fb-cyan);
    font-size: 1.2rem;
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.process-card {
    position: relative;
    padding: 34px 26px;
    text-align: center;
    border-radius: 28px;
    background: var(--fb-card);
    border: 1px solid var(--fb-border);
}

.process-number {
    display: inline-flex;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--fb-cyan);
}

.faq-wrapper {
    max-width: 950px;
}

.accordion-fb .accordion-item {
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 24px;
    background: var(--fb-card);
    border: 1px solid var(--fb-border);
}

.accordion-fb .accordion-button {
    padding: 1.4rem 1.6rem;
    background: transparent;
    color: #fff;
    font-weight: 700;
    box-shadow: none;
}

.accordion-fb .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, .03);
    color: var(--fb-cyan);
}

.accordion-fb .accordion-button::after {
    filter: invert(1);
}

.accordion-fb .accordion-body {
    padding: 0 1.6rem 1.5rem;
    color: var(--fb-muted);
    line-height: 1.8;
}

/* CARDS */

.stat-card,
.service-card,
.why-box,
.testimonial-card,
.newsletter-mini {
    background: var(--fb-card);
    border: 1px solid var(--fb-border);
    border-radius: 28px;
}

.stat-card {
    height: 100%;
    padding: 28px;
    transition: .35s;
}

.stat-card:hover,
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 224, 255, .32);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--fb-cyan);
}

.service-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 34px;
    transition: .35s;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--fb-gradient);
}

.service-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 19px;
    background: rgba(0, 224, 255, .09);
    color: var(--fb-cyan);
    font-size: 1.7rem;
}

.why-box,
.testimonial-card,
.newsletter-mini {
    padding: 32px;
}

.swiper {
    padding-bottom: 50px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, .45);
}

.swiper-pagination-bullet-active {
    background: var(--fb-cyan);
}

/* CTA / FORMS */

.cta-box {
    padding: clamp(38px, 7vw, 80px);
    border-radius: 42px;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 45, 141, .25), transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(0, 224, 255, .20), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .14);
}

.form-control {
    border-radius: 16px;
    padding: .9rem 1rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, .55);
}

.form-control:focus {
    background: rgba(255, 255, 255, .10);
    border-color: var(--fb-cyan);
    color: #fff;
    box-shadow: 0 0 0 .25rem rgba(0, 224, 255, .12);
}

/* FOOTER */

.fb-footer {
    padding: 80px 0 30px;
    background: rgba(3, 11, 20, .55);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
    height: 90px;
}

.footer-text {
    color: var(--fb-muted);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .75rem;
}

.footer-links a {
    color: var(--fb-muted);
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: var(--fb-cyan);
}

.footer-line {
    border-color: rgba(255, 255, 255, .12);
    margin: 45px 0 24px;
}

.footer-bottom {
    color: rgba(255, 255, 255, .55);
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 190px 0 140px;
}

.contact-info-box,
.contact-form-card {
    border-radius: 32px;
    background: var(--fb-card);
    border: 1px solid var(--fb-border);
}

.contact-info-box {
    padding: 30px;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.contact-info-item:last-child {
    border-bottom: 0;
}

.contact-info-item i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    background: rgba(0, 224, 255, .10);
    color: var(--fb-cyan);
    font-size: 1.25rem;
}

.contact-info-item strong {
    display: block;
    margin-bottom: .25rem;
    color: #fff;
}

.contact-info-item span {
    color: var(--fb-muted);
}

.contact-form-card {
    padding: 40px;
}

.form-label {
    color: rgba(255, 255, 255, .82);
    font-weight: 700;
    font-size: .9rem;
}

.fb-select {
    border-radius: 16px;
    padding: .9rem 1rem;
    background-color: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
}

.fb-select:focus {
    background-color: rgba(255, 255, 255, .10);
    border-color: var(--fb-cyan);
    color: #fff;
    box-shadow: 0 0 0 .25rem rgba(0, 224, 255, .12);
}

.fb-select option {
    color: #111;
}

.iti {
    width: 100%;
}

.iti__tel-input {
    width: 100%;
}

.phone-error {
    display: block;
    margin-top: .5rem;
    color: #ff6b8a;
    font-size: .82rem;
    font-weight: 600;
}

/* =========================================================
   QUOTE PAGE
========================================================= */

.quote-hero {
    position: relative;
    overflow: hidden;
    padding: 190px 0 140px;
}

.quote-benefit-card,
.quote-side-box,
.quote-form-card {
    background: var(--fb-card);
    border: 1px solid var(--fb-border);
    border-radius: 30px;
}

.quote-benefit-card {
    padding: 30px;
    transition: all .35s ease;
}

.quote-benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 224, 255, .32);
}

.quote-side-box {
    padding: 30px;
}

.quote-form-card {
    padding: 42px;
}

.quote-form-section {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.quote-form-section h3 {
    margin-bottom: .4rem;
    font-size: 1.45rem;
}

.quote-form-section p {
    margin: 0;
    color: var(--fb-muted);
}

.quote-submit-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .10);
}

.quote-submit-box strong {
    display: block;
    margin-bottom: .35rem;
    color: #fff;
}

.quote-submit-box span {
    display: block;
    color: var(--fb-muted);
    font-size: .92rem;
}

/* INTITELINPUT */
.iti {
    width: 100%;
}

.iti__tel-input,
.iti input {
    width: 100%;
}

.iti__country-container {
    color: #111;
}

.iti__dropdown-content {
    background: #fff;
    color: #111;
    z-index: 99999;
}

.iti__country {
    color: #111;
}

.iti__selected-country {
    border-radius: 16px 0 0 16px;
}

/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    position: relative;
    padding: 110px 0;
}

.newsletter-wrapper {
    position: relative;

    padding:
        70px 60px;

    border-radius: 36px;

    overflow: hidden;

    background:
        linear-gradient(145deg,
            rgba(10, 25, 40, .98),
            rgba(8, 20, 32, .98));

    border:
        1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, .45);
}

.newsletter-wrapper::before {
    content: '';

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top right,
            rgba(255, 0, 170, .14),
            transparent 40%),
        radial-gradient(circle at bottom left,
            rgba(0, 195, 255, .12),
            transparent 40%);

    pointer-events: none;
}

.newsletter-title {
    margin:
        1rem 0 1.2rem;

    font-size:
        clamp(2.8rem, 4vw, 4.8rem);

    line-height: 1.04;

    letter-spacing: -.04em;
}

.newsletter-text {
    max-width: 520px;

    margin: 0;

    color: var(--fb-muted);

    font-size: 1.05rem;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.newsletter-input-group {
    display: flex;
    gap: 14px;
}

.newsletter-input {
    height: 64px;

    border-radius: 18px !important;
}

.newsletter-btn {
    min-width: 180px;
    border-radius: 18px;
}

.newsletter-note {
    display: block;

    margin-top: 14px;

    color: var(--fb-muted);
}

/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-card {
    position: relative;

    max-width: 900px;

    margin: auto;

    padding: 60px;

    border-radius: 36px;

    background:
        linear-gradient(145deg,
            rgba(10, 25, 40, .95),
            rgba(8, 20, 32, .95));

    border:
        1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, .35);
}

.legal-card h2 {
    margin:
        3rem 0 1rem;

    font-size: 1.6rem;

    letter-spacing: -.02em;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    color: var(--fb-muted);

    line-height: 1.9;
}

.legal-update {
    margin-bottom: 2.5rem;

    color: var(--fb-muted);

    font-size: .95rem;

    opacity: .8;
}

/* =========================================================
   COOKIE CONSENT
========================================================= */

.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 99998;
    display: none;
}

.cookie-consent.active {
    display: block;
}

.cookie-consent-content {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 24px;
    border-radius: 28px;
    background: rgba(8, 27, 45, .94);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .45);
}

.cookie-consent-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--fb-cyan);
    background: rgba(0, 224, 255, .10);
    font-size: 1.5rem;
}

.cookie-consent-text h5 {
    margin-bottom: .4rem;
}

.cookie-consent-text p {
    margin: 0;
    color: var(--fb-muted);
    line-height: 1.7;
}

.cookie-consent-text a {
    display: inline-block;
    margin-top: .45rem;
    color: var(--fb-cyan);
    text-decoration: none;
    font-weight: 700;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(4, 12, 22, .82);
    backdrop-filter: blur(14px);
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-card {
    width: 100%;
    max-width: 640px;
    padding: 38px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(11, 30, 45, .98), rgba(8, 22, 35, .98));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .45);
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.cookie-option strong {
    display: block;
    margin-bottom: .35rem;
}

.cookie-option span {
    display: block;
    color: var(--fb-muted);
    font-size: .92rem;
}

.cookie-required {
    color: var(--fb-cyan) !important;
    white-space: nowrap;
    font-weight: 700;
}

.cookie-switch input {
    display: none;
}

.cookie-switch span {
    width: 54px;
    height: 30px;
    display: block;
    position: relative;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    cursor: pointer;
    transition: .3s;
}

.cookie-switch span::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    top: 4px;
    left: 4px;
    border-radius: 50%;
    background: #fff;
    transition: .3s;
}

.cookie-switch input:checked+span {
    background: var(--fb-gradient);
}

.cookie-switch input:checked+span::after {
    left: 28px;
}

.cookie-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

@media (max-width: 767.98px) {
    .cookie-consent-content {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .cookie-consent-actions,
    .cookie-modal-actions {
        flex-direction: column;
    }

    .cookie-consent-actions .btn,
    .cookie-modal-actions .btn {
        width: 100%;
    }

    .cookie-option {
        flex-direction: column;
    }
}

/* =========================================================
   LOADING OVERLAY
========================================================= */

.fb-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

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

    padding: 20px;

    background:
        rgba(4, 12, 22, .88);

    backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.fb-loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.fb-loading-box {
    width: 100%;
    max-width: 420px;

    padding: 42px 34px;

    text-align: center;

    border-radius: 30px;

    background:
        linear-gradient(145deg,
            rgba(11, 30, 45, .96),
            rgba(8, 22, 35, .96));

    border:
        1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, .45);
}

.fb-loading-box h4 {
    margin-bottom: .8rem;
}

.fb-loading-box p {
    margin: 0;
    color: var(--fb-muted);
}

.fb-spinner {
    width: 68px;
    height: 68px;

    margin:
        0 auto 26px;

    border-radius: 50%;

    border:
        4px solid rgba(255, 255, 255, .08);

    border-top:
        4px solid #00E0FF;

    border-right:
        4px solid #FF00AA;

    animation:
        fbSpin 1s linear infinite;
}

@keyframes fbSpin {

    to {
        transform: rotate(360deg);
    }
}

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

@media (max-width: 991.98px) {

    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .fb-navbar {
        background: rgba(8, 27, 45, .94);

        backdrop-filter: blur(18px);

        padding: 8px 0;
    }

    .navbar-collapse {
        padding: 18px 0 8px;
    }

    .fb-navbar .nav-link {
        padding: .9rem 0;
    }

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

    /**
     * BRAND
     */

    .navbar-brand {
        margin-right: 0;
        max-width: 100%;
    }

    .brand-logo {
        height: 100px;
        width: auto;

        min-width: unset;
        max-width: 180px;

        object-fit: contain;
    }

    .navbar-brand::after {
        bottom: 6px;
    }

    .fb-navbar.scrolled .brand-logo {
        height: 96px;
    }

    .navbar-toggler {
        width: 64px;
        height: 64px;
    }

    /**
     * HERO
     */

    .hero,
    .about-hero,
    .services-hero,
    .contact-hero,
    .quote-hero {
        padding-top: 145px;
        min-height: auto;
        overflow: hidden;
    }

    .hero .container,
    .about-hero .container,
    .services-hero .container,
    .contact-hero .container,
    .quote-hero .container {
        overflow: hidden;
    }

    .hero-title {
        font-size: clamp(3rem, 8vw, 5rem);

        line-height: 1.02;

        letter-spacing: -.03em;

        word-break: break-word;

        text-wrap: balance;
    }

    .hero-lead {
        max-width: 100%;
    }

    /**
     * HERO CARD
     */

    .hero-card {
        margin-top: 40px;
    }

    .floating-card {
        position: static;
        margin-top: 18px;
        max-width: 100%;
    }

    /**
     * PROCESS
     */

    .process-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    /**
     * SECTION
     */

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

    /**
     * CONTACT
     */

    .contact-form-card {
        padding: 34px;
    }

    .contact-info-box {
        padding: 28px;
    }

    /**
     * QUOTE
     */

    .quote-form-card {
        padding: 34px;
    }

    .quote-submit-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {

    html,
    body {
        overflow-x: hidden;
    }

    /**
     * NAVBAR
     */

    .fb-navbar {
        padding: 2px 0;
    }

    .navbar-toggler {
        width: 58px;
        height: 58px;

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

    /**
     * BRAND
     */

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

    .brand-logo {
        height: 100px;

        width: auto;

        max-width: 170px;

        object-fit: contain;
    }

    .navbar-brand::after {
        bottom: 12px;
    }

    .fb-navbar.scrolled .brand-logo {
        height: 88px;
    }

    /**
     * HERO
     */

    .hero,
    .about-hero,
    .services-hero,
    .contact-hero,
    .quote-hero {
        padding-top: 142px;
        padding-bottom: 90px;
    }

    .hero-title,
    .about-title {
        font-size: clamp(2.8rem, 13vw, 4rem);

        line-height: 1.03;

        letter-spacing: -.03em;

        text-wrap: balance;
    }

    .hero-badge {
        width: 100%;

        justify-content: center;

        text-align: center;
    }

    /**
     * HERO ACTIONS
     */

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-actions .btn-fb,
    .hero-actions .btn-outline-fb {
        width: 100%;
        justify-content: center;
    }

    /**
     * GRID
     */

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

    /**
     * CARDS
     */

    .service-card,
    .stat-card,
    .why-box,
    .quote-form-card,
    .quote-side-box,
    .quote-benefit-card,
    .contact-form-card,
    .contact-info-box {
        padding: 26px;
        border-radius: 24px;
    }

    /**
     * CONTACT
     */

    .contact-info-item {
        align-items: flex-start;
    }

    .contact-info-item i {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    /**
     * FORMS
     */

    .form-control,
    .fb-select,
    textarea {
        font-size: 16px;
    }

    /**
     * BUTTONS
     */

    .btn-fb,
    .btn-outline-fb {
        width: 100%;
        justify-content: center;
    }

    /**
     * QUOTE SUBMIT
     */

    .quote-submit-box {
        padding: 22px;
    }

    /**
     * HERO CARD MOBILE
     */

    .hero-card {
        padding: 14px;
        border-radius: 24px;
    }

    /**
     * SAFETY OVERFLOW
     */

    img,
    svg,
    video,
    canvas {
        max-width: 100%;
        height: auto;
    }

    .legal-card {
        padding: 34px 26px;
        border-radius: 28px;
    }

    .legal-card h2 {
        font-size: 1.3rem;
    }
}