/* Shared base styles: CSS variables, element resets, and generic utility/component
   classes used across header, footer, and page content alike (previously duplicated
   across every page-specific CSS file). Includes .cta / .customer-reviews / .contact
   rules, which are NOT scoped to their own component files because several pages
   hand-copy that markup independently of the shared partial (see classify() comment). */

body::-webkit-scrollbar {
    width: 0.8em;
}

body::-webkit-scrollbar-track {
    background: #fff;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 25px;
}

::-moz-selection {
    background-color: #000;
    color: #fff;
}

::selection {
    background-color: #000;
    color: #fff;
}

body,
html {
    overflow-x: hidden;
    position: relative;
}

.h2,
.h3,
h2,
h3 {
    color: #505050;
    display: block;
    font-family: CUBANO-REGULAR;
    font-weight: 500 !important;
}

.h4,
.h5,
h4,
h5 {
    color: #002a5a;
    display: block;
    font-family: CUBANO-REGULAR;
}

.h6,
h6 {
    color: #3d3d3d;
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.h6,
h6,
p {
    font-family: Roboto, sans-serif;
}

a {
    box-shadow: none;
    outline: none !important;
    text-decoration: none !important;
}

section {
    padding: 50px 0;
    position: relative;
}

ul li {
    font-size: 16px;
    line-height: 22px;
}

.btn-order {
    background: #bc192c !important;
    border: 1px solid hsla(0, 0%, 100%, 0.439) !important;
    border-radius: 7px !important;
    color: #fff !important;
    font-family: Roboto, sans-serif;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 5px 30px !important;
}

.btn-order:focus,
.btn-order:hover {
    background: #1f365c !important;
    border-color: #fff !important;
    color: #fff !important;
}

.btn-live {
    background: #fff !important;
    border: 1px solid transparent !important;
    border-radius: 7px !important;
    color: #1f365c !important;
    font-family: Roboto, sans-serif;
    font-size: 14px !important;
    font-weight: 400;
    padding: 5px 30px !important;
}

.btn-live:hover {
    background: #bc192c !important;
    border-color: transparent !important;
    color: #fff !important;
}

.btn:focus {
    box-shadow: none;
}

.m-t-10 {
    margin-top: 10px !important;
}

.m-t-20 {
    margin-top: 20px !important;
}

.m-t-30 {
    margin-top: 30px !important;
}

.m-t-40 {
    margin-top: 40px !important;
}

.m-t-50 {
    margin-top: 50px !important;
}

.lazyload {
    opacity: 0;
    transition: opacity 0.5s;
}

:root {
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
    --swiper-navigation-size: 44px;
}

.fa-solid {
    font-family: Font Awesome\6 Free;
    font-weight: 900;
}

.fa-brands,
.fab {
    font-family: Font Awesome\6 Brands;
    font-weight: 400;
}

.fa-facebook-f:before {
    content: "\f39e";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-linkedin-in:before {
    content: "\f0e1";
}

.fa-pinterest-p:before {
    content: "\f231";
}

.fa-tiktok:before {
    content: "\e07b";
}

.fa-twitter:before {
    content: "\f099";
}

.fa {
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
}

.fa,
.fa-brands,
.fa-solid,
.fab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: auto;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
}

.fa-chevron-right:before {
    content: "\f054";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-heart:before {
    content: "\f004";
}

.fa-home:before,
.fa-house:before {
    content: "\f015";
}

.fa-phone:before {
    content: "\f095";
}

.fa-phone-volume:before {
    content: "\f2a0";
}

.fa-tag:before {
    content: "\f02b";
}

.fa-user:before {
    content: "\f007";
}

.fa-users:before {
    content: "\f0c0";
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    border-width: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transform: translateZ(0);
    transition: opacity 0.3s;
    z-index: 10;
}

button.swiper-pagination-bullet {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.swiper-pagination-bullet:only-child {
    display: none !important;
}

.swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    opacity: var(--swiper-pagination-bullet-opacity, 1);
}

*,
:after,
:before {
    box-sizing: border-box;
}

body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    margin: 0;
    text-align: var(--bs-body-text-align);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

ul {
    margin-bottom: 1rem;
    margin-top: 0;
    padding-left: 2rem;
}

ul ul {
    margin-bottom: 0;
}

a:hover {
    color: #0a58ca;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    vertical-align: middle;
}

button {
    border-radius: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

[role="button"] {
    cursor: pointer;
}

[type="button"],
button {
    -webkit-appearance: button;
}

[type="button"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::file-selector-button {
    font: inherit;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

.img-fluid {
    height: auto;
    max-width: 100%;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
    width: 100%;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-top: calc(var(--bs-gutter-y) * -1);
}

.row > * {
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    width: 100%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.g-0 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.btn {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: #212529;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.375rem 0.75rem;
    text-align: center;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle;
}

.btn:hover {
    color: #212529;
}

.btn:disabled {
    opacity: 0.65;
    pointer-events: none;
}

.fade {
    transition: opacity 0.15s linear;
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.float-end {
    float: right !important;
}

.d-inline {
    display: inline !important;
}

.d-block {
    display: block !important;
}

.d-none {
    display: none !important;
}

.align-items-center {
    align-items: center !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.my-auto {
    margin-bottom: auto !important;
    margin-top: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.text-end {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.cta {
    background: #f6f9f8;
    padding: 25px 0;
}

.cta .cta-box {
    position: relative;
    text-align: center;
}

.cta .cta-box .e-text {
    color: #000;
    font-family: Jost, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.cta .cta-box .h6 {
    font-family: CUBANO-REGULAR;
    margin: 10px 0 0;
}

.customer-reviews {
    background-color: #f3f3f3;
}

.customer-reviews p {
    font-size: 14px !important;
}

.customer-reviews .review-box {
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.22);
    min-height: 250px;
    padding: 20px;
    position: relative;
    text-align: center;
}

.customer-reviews .review-box .h5 {
    color: #454545;
    font-family: Roboto, sans-serif;
}

.customer-reviews .review-box:before {
    background: url(../images/icons/pologon.webp) no-repeat;
    content: "";
    height: 18px;
    left: 7%;
    position: absolute;
    top: 100%;
    width: 20px;
}

.customer-reviews .e-text {
    color: rgba(0, 0, 0, 0.749);
    font-family: Jost, sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.h3,
.h4,
h3,
h4 {
    display: block;
    font-family: CUBANO-REGULAR;
    font-weight: 500 !important;
}

.fa-ul {
    list-style-type: none;
    margin-left: var(--fa-li-margin, 2.5em);
    padding-left: 0;
}

.fa-li {
    left: calc(var(--fa-li-width, 2em) * -1);
    line-height: inherit;
    position: absolute;
    text-align: center;
    width: var(--fa-li-width, 2em);
}

.fa-pulse {
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 1s);
    animation-duration: var(--fa-animation-duration, 1s);
    -webkit-animation-iteration-count: var(
        --fa-animation-iteration-count,
        infinite
    );
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-name: fa-spin;
    animation-name: fa-spin;
    -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));
    animation-timing-function: var(--fa-animation-timing, steps(8));
}

.fa-flip-horizontal {
    transform: scaleX(-1);
}

.fa-check:before {
    content: "\f00c";
}

.fa-edit:before {
    content: "\f044";
}

.fa-spinner:before {
    content: "\f110";
}

hr {
    background-color: currentColor;
    border: 0;
    color: inherit;
    margin: 1rem 0;
    opacity: 0.25;
}

hr:not([size]) {
    height: 1px;
}

.h1,
.h3,
.h4,
.h5,
.h6,
h1,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.small,
small {
    font-size: 0.875em;
}

kbd {
    background-color: #212529;
    border-radius: 0.2rem;
    color: #fff;
    direction: ltr;
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    font-size: 0.875em;
    padding: 0.2rem 0.4rem;
    unicode-bidi: bidi-override;
}

kbd kbd {
    font-size: 1em;
    font-weight: 700;
    padding: 0;
}

label {
    display: inline-block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}

button,
select {
    text-transform: none;
}

select {
    word-wrap: normal;
}

select:disabled {
    opacity: 1;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

textarea {
    resize: vertical;
}

.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    color: #212529;
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.375rem 0.75rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 100%;
}

.form-control[type="file"] {
    overflow: hidden;
}

.form-control[type="file"]:not(:disabled):not([readonly]) {
    cursor: pointer;
}

.form-control:focus {
    background-color: #fff;
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    color: #212529;
    outline: 0;
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em;
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled {
    background-color: #e9ecef;
    opacity: 1;
}

.form-control::file-selector-button {
    -webkit-margin-end: 0.75rem;
    background-color: #e9ecef;
    border: 0 solid;
    border-color: inherit;
    border-inline-end-width: 1px;
    border-radius: 0;
    color: #212529;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    padding: 0.375rem 0.75rem;
    pointer-events: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3;
}

.form-control::-webkit-file-upload-button {
    -webkit-margin-end: 0.75rem;
    background-color: #e9ecef;
    border: 0 solid;
    border-color: inherit;
    border-inline-end-width: 1px;
    border-radius: 0;
    color: #212529;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    padding: 0.375rem 0.75rem;
    pointer-events: none;
    -webkit-transition: color 0.15s ease-in-out,
        background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}

textarea.form-control {
    min-height: calc(1.5em + 0.75rem + 2px);
}

.input-group {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.input-group .btn {
    position: relative;
    z-index: 2;
}

.input-group .btn:focus {
    z-index: 3;
}

.input-group-text {
    align-items: center;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    color: #212529;
    display: flex;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.375rem 0.75rem;
    text-align: center;
    white-space: nowrap;
}

.btn.disabled,
.btn:disabled {
    opacity: 0.65;
    pointer-events: none;
}

.placeholder {
    background-color: currentColor;
    cursor: wait;
    display: inline-block;
    min-height: 1em;
    opacity: 0.5;
    vertical-align: middle;
}

.placeholder.btn:before {
    content: "";
    display: inline-block;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.invisible {
    visibility: hidden !important;
}

.contact {
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 10px;
    padding: 50px 0;
}

.contact .h4 {
    color: #505050;
}

.contact .input-group-append .input-group-text i {
    color: #b1b1b1;
}

.contact .input-group-append.txt .input-group-text {
    align-items: normal;
}

.contact .btn-send {
    background: #c83d3d;
    border: 1px solid transparent;
    color: #fff;
    padding: 5px 30px;
}

.contact .contact-card .h3 {
    color: #fff;
    font-size: 28px;
    line-height: 38px;
}

.contact .contact-card .location {
    color: #fff;
    display: block;
    font-family: FuturaStd-Bold, Roboto, sans-serif;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
    text-decoration: underline;
    text-underline-position: under;
}

.contact .contact-card .list-contact {
    margin-left: 1.5em;
}

.contact .contact-card .list-contact li {
    font-family: Roboto, sans-serif;
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 10px;
}

.contact .contact-card .list-contact li a {
    color: #fff;
}

.contact .contact-card .list-contact li a:focus,
.contact .contact-card .list-contact li a:hover {
    padding-left: 5px;
    transition: all, 0.5s, ease;
}

.btn-order.active,
.btn-order:focus,
.btn-order:hover {
    background: #1f365c !important;
    border-color: #fff !important;
    color: #fff !important;
}

[type="button"],
[type="submit"],
button {
    -webkit-appearance: button;
}

[type="button"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

.row>* {
    flex-shrink: 0;
    margin-top: var(--bs-gutter-y);
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    width: 100%;
}

.badge {
    border-radius: 0.25rem;
    color: #fff;
    display: inline-block;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    padding: 0.35em 0.65em;
    text-align: center;
    vertical-align: baseline;
    white-space: nowrap;
}

.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

@media (min-width: 1200px) {
    .h1,
    h1 {
        font-size: 2.5rem;
    }

    .h2,
    h2 {
        font-size: 2rem;
    }

    .h3,
    h3 {
        font-size: 1.75rem;
    }

    .h4,
    h4 {
        font-size: 1.5rem;
    }

    .container {
        max-width: 1140px;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .d-xl-block {
        display: block !important;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .d-sm-inline {
        display: inline !important;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-md-1 {
        margin-left: 8.33333333%;
    }

    .d-md-block {
        display: block !important;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .d-lg-block {
        display: block !important;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }

    .fade {
        transition: none;
    }

    .fa-pulse {
        -webkit-animation-delay: -1ms;
        animation-delay: -1ms;
        -webkit-animation-duration: 1ms;
        animation-duration: 1ms;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        transition-delay: 0s;
        transition-duration: 0s;
    }

    .form-control {
        transition: none;
    }

    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none;
    }

    .form-control::file-selector-button {
        transition: none;
    }

    .contact .contact-card .list-contact li a:focus,
    .contact .contact-card .list-contact li a:hover {
        transition: none;
    }
}

@media (max-width: 576px) {
    .high-quality .h4 {
        margin-top: 30px;
    }

    .samples {
        text-align: center;
    }

    .btn-live,
    .btn-order {
        display: block;
    }

    .customer-reviews .review-box {
        margin: 30px 0;
    }

    .cta .cta-box {
        padding: 25px 0;
    }

    .contact .input-group-append .input-group-text {
        border: 1px solid #b1b1b1;
        height: 40px;
        margin-top: 15px;
    }

    .contact .contact-card {
        margin-top: 30px;
    }

    .form-control {
        margin: 15px 0;
    }

    .portfolio:before {
        display: none;
    }
}

@media (max-width: 768px) {
    .customer-reviews .review-box {
        min-height: 450px !important;
    }
}

@media (max-width: 992px) {
    .contact .contact-card,
    .cta .cta-box {
        margin-top: 30px;
    }
}

/* FAQ accordion + all-set-cta component styles (hand-copied across multiple pages,
   not scoped to a single shared partial -- must live here so every page gets them). */

.faqs {
    background: #fff;
    padding: 60px 0;
}

.faqs p {
    margin-bottom: 1rem !important;
}

.faqs button:focus {
    outline: none;
}

.faqs .h6 {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.faqs .tab-content {
    margin: 40px 0;
}

.faq-accordion {
    width: 100%;
}

.faq-accordion .faq-item {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    /* margin: auto; */
}

.faq-accordion .faq-item:hover {
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-accordion .faq-item.active {
    border-color: #000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-accordion .faq-question {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-accordion .faq-question:hover {
    background: #f8f9fa;
}

.faq-accordion .faq-item.active .faq-question {
    background: #000;
    color: #ffffff;
}

.faq-accordion .faq-question h3,
.faq-accordion .faq-question h2 {
    color: #505050;
    margin: 0;
    flex: 1;
    padding-right: 15px;
}

.faq-accordion .faq-item.active .faq-question h3,
.faq-accordion .faq-item.active .faq-question h2 {
    color: #ffffff;
}

.faq-accordion .faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-accordion .faq-item.active .faq-icon {
    background: #c8102e;
    transform: rotate(45deg);
}

.faq-accordion .faq-icon i {
    font-size: 14px;
    color: #505050;
    transition: all 0.3s ease;
}

.faq-accordion .faq-item.active .faq-icon i {
    color: #ffffff;
}

.faq-accordion .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-accordion .faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-accordion .faq-answer-content {
    padding: 0 25px 25px 25px;
    background: #ffffff;
}

.faq-accordion .faq-answer-content p {
    color: #666666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.all-set-cta {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.all-set-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(200, 16, 46, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.all-set-cta .h3 {
    color: #ffffff;
}

.all-set-cta .all-set-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.all-set-cta .all-set-text {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.all-set-cta .all-set-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.all-set-cta .all-set-cta-btn .btn-order {
    padding: 14px 35px;
    font-size: 16px;
    background: #c8102e;
    color: #ffffff;
    border: 2px solid #c8102e;
    transition: all 0.3s ease;
}

.all-set-cta .all-set-cta-btn .btn-order:hover {
    background: #a00d24;
    border-color: #a00d24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

@media (max-width: 768px) {
    .all-set-cta {
        padding: 50px 0;
    }

    .all-set-cta .all-set-content {
        padding: 30px 20px;
    }

    .all-set-cta .all-set-text {
        font-size: 14px;
    }

    .all-set-cta .all-set-cta-btn .btn-order {
        padding: 12px 25px;
        font-size: 14px;
    }

    .faqs {
        padding: 40px 0;
    }

    .faq-accordion .faq-question {
        padding: 15px 20px;
    }

    .faq-accordion .faq-question h3,
    .faq-accordion .faq-question h2 {
        font-size: 16px !important;
    }

    .faq-accordion .faq-answer-content {
        padding: 0 20px 20px 20px;
    }

    .faq-accordion .faq-answer-content p {
        font-size: 14px;
    }

    .faq-accordion .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-accordion .faq-icon i {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .faq-accordion .faq-question {
        padding: 12px 15px;
    }

    .faq-accordion .faq-question h3,
    .faq-accordion .faq-question h2 {
        font-size: 14px !important;
    }

    .faq-accordion .faq-answer-content {
        padding: 0 15px 15px 15px;
    }

    .faq-accordion .faq-answer-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .faq-accordion .faq-item {
        margin-bottom: 10px;
    }
}

/* Swiper navigation-arrow base styles (next/prev buttons) -- generic Swiper library CSS,
   needed by every carousel sitewide, not just the homepage. */

.swiper-button-next,
.swiper-button-prev {
    align-items: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
    cursor: pointer;
    display: flex;
    height: var(--swiper-navigation-size);
    justify-content: center;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    z-index: 10;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    font-variant: normal;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none !important;
}

.swiper-button-prev {
    left: 10px;
    right: auto;
}

.swiper-button-prev:after {
    content: "prev";
}

.swiper-button-next {
    left: auto;
    right: 10px;
}

.swiper-button-next:after {
    content: "next";
}
