:root {
    --brand: #b31c2b;
    --brand-dark: #8d101d;
    --brand-soft: #fff0f1;
    --ink: #231b1d;
    --muted: #71676a;
    --cream: #fbf8f3;
    --surface: #ffffff;
    --line: rgba(70, 43, 47, .12);
    --shadow: 0 24px 70px rgba(71, 29, 35, .12);
    --font-body: "DM Sans", sans-serif;
    --font-display: "Playfair Display", serif;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--surface);
    padding-top: 84px;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
img { max-width: 100%; }

.site-header {
    min-height: 84px;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: .25s ease;
}
.site-header.is-scrolled {
    min-height: 74px;
    border-color: var(--line);
    box-shadow: 0 12px 35px rgba(62, 28, 33, .08);
}
.site-logo {
    width: 210px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
}
.navbar .nav-link {
    color: var(--ink);
    font-weight: 600;
    padding: .65rem .85rem !important;
    border-radius: 999px;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--brand);
    background: var(--brand-soft);
}
.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--brand-dark);
    --bs-btn-hover-border-color: var(--brand-dark);
    --bs-btn-active-bg: var(--brand-dark);
    --bs-btn-active-border-color: var(--brand-dark);
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(179, 28, 43, .22);
}
.site-offcanvas { width: min(390px, 92vw) !important; }
.offcanvas-logo { width: 190px; }
.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid var(--line);
}
.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--brand);
    background: var(--brand-soft);
}
.social-pill,
.footer-social {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: .2s ease;
}

.section-space { padding: 6.5rem 0; }
.section-soft { background: var(--cream); }
.section-kicker {
    color: var(--brand);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.display-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 5.2rem);
    line-height: .98;
    letter-spacing: -.04em;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3.65rem);
    line-height: 1.08;
    letter-spacing: -.025em;
}
.lead-soft {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-modern {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 10% 15%, rgba(179, 28, 43, .13), transparent 31%),
        linear-gradient(135deg, #fff 0%, #fbf5ef 56%, #f7e7e7 100%);
}
.hero-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(179, 28, 43, .12) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to right, #000, transparent 58%);
    pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .display-title span { color: var(--brand); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .65rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.75);
    border: 1px solid var(--line);
    color: var(--brand);
    font-size: .82rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
}
.hero-visual {
    position: relative;
    min-height: 650px;
}
.hero-image-shell {
    position: absolute;
    inset: 0 0 0 7%;
    border-radius: 12rem 12rem 2.5rem 2.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #eddcdb;
}
.hero-image-shell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-floating {
    position: absolute;
    z-index: 2;
    max-width: 250px;
    padding: 1rem 1.15rem;
    border-radius: 1.2rem;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}
.hero-floating.one { left: 0; top: 14%; }
.hero-floating.two { right: -2%; bottom: 12%; }
.hero-floating i { color: var(--brand); font-size: 1.3rem; }

.trust-strip {
    position: relative;
    z-index: 5;
    margin-top: -45px;
}
.trust-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.6rem;
    box-shadow: var(--shadow);
}
.trust-item {
    padding: 1.45rem 1.6rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 1.3rem;
}
.trust-item strong { display: block; }
.trust-item span { color: var(--muted); font-size: .88rem; }

.modern-card {
    height: 100%;
    padding: 1.7rem;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 12px 36px rgba(63, 35, 39, .055);
    transition: transform .25s ease, box-shadow .25s ease;
}
.modern-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}
.card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 1.1rem;
    color: #fff;
    background: linear-gradient(145deg, var(--brand), #d4636e);
    font-size: 1.45rem;
    margin-bottom: 1.35rem;
}
.modern-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}
.modern-card p { color: var(--muted); }

.package-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 1.65rem;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 16px 48px rgba(62, 33, 38, .075);
}
.package-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}
.package-body { padding: 1.6rem; }
.package-price {
    color: var(--brand);
    font-size: 1.45rem;
    font-weight: 800;
}
.package-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    transition: .25s;
    pointer-events: none;
}
.package-card:hover::after { border-color: rgba(179, 28, 43, .35); }

.about-image {
    min-height: 580px;
    border-radius: 2rem;
    overflow: hidden;
    background: #ecd7d5;
    box-shadow: var(--shadow);
}
.about-image img {
    width: 100%;
    height: 100%;
    min-height: 580px;
    object-fit: cover;
    object-position: center top;
}
.accordion-modern .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
}
.accordion-modern .accordion-button {
    padding: 1.1rem 0;
    background: transparent;
    box-shadow: none;
    font-weight: 700;
    color: var(--ink);
}
.accordion-modern .accordion-button:not(.collapsed) { color: var(--brand); }
.accordion-modern .accordion-body { padding: 0 0 1.2rem; color: var(--muted); }

.testimonial-card {
    height: 100%;
    padding: 1.6rem;
    border-radius: 1.4rem;
    background: #fff;
    border: 1px solid var(--line);
}
.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--brand-soft);
}
.quote-mark {
    color: var(--brand);
    font-size: 2rem;
    line-height: 1;
}

.blog-card {
    height: 100%;
    overflow: hidden;
    border-radius: 1.45rem;
    border: 1px solid var(--line);
    background: #fff;
    transition: .25s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-cover {
    height: 235px;
    object-fit: cover;
    width: 100%;
}
.blog-body { padding: 1.35rem; }
.blog-body h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
}
.blog-meta { color: var(--muted); font-size: .82rem; }

.video-card {
    position: relative;
    overflow: hidden;
    height: 330px;
    border-radius: 1.5rem;
    background: #281b1d;
}
.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .74;
    transition: .35s;
}
.video-card:hover img { transform: scale(1.05); opacity: .58; }
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
    background: linear-gradient(transparent, rgba(25, 12, 15, .88));
}
.play-button {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    font-size: 1.45rem;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 5rem);
    border-radius: 2rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand) 55%, #d65a65);
    box-shadow: var(--shadow);
}
.cta-panel::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -130px;
    top: -170px;
    border-radius: 50%;
    border: 65px solid rgba(255,255,255,.08);
}

.page-hero {
    padding: 6rem 0 4.5rem;
    background:
        radial-gradient(circle at 75% 10%, rgba(179,28,43,.18), transparent 25%),
        var(--cream);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 5vw, 4.7rem);
}
.content-prose {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4d4245;
}
.content-prose h2,
.content-prose h3 {
    font-family: var(--font-display);
    margin-top: 2rem;
    color: var(--ink);
}
.content-prose img {
    max-width: 100%;
    border-radius: 1.2rem;
}

.contact-card {
    padding: 2rem;
    border-radius: 1.7rem;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.form-control,
.form-select {
    min-height: 52px;
    border-radius: .95rem;
    border-color: var(--line);
    padding: .75rem 1rem;
}
textarea.form-control { min-height: 150px; }
.form-control:focus,
.form-select:focus {
    border-color: rgba(179, 28, 43, .55);
    box-shadow: 0 0 0 .25rem rgba(179, 28, 43, .09);
}
.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: #fff;
}
.contact-method i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: .85rem;
    color: var(--brand);
    background: var(--brand-soft);
}

.site-footer {
    position: relative;
    margin-top: 4rem;
    color: #fff;
    background: #66101a;
}
.footer-wave {
    position: absolute;
    top: -34px;
    width: 100%;
    height: 35px;
    background:
        radial-gradient(42px 28px at 50% 0, transparent 68%, #66101a 70%) 0 0 / 84px 35px repeat-x;
}
.footer-logo {
    width: 220px;
    filter: brightness(0) invert(1);
}
.footer-intro,
.footer-intro p { color: rgba(255,255,255,.72); }
.footer-title {
    font-size: .82rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.footer-link,
.footer-contact {
    color: rgba(255,255,255,.72);
}
.footer-link:hover,
.footer-contact:hover { color: #fff; }
.footer-contact {
    display: flex;
    gap: .7rem;
    align-items: center;
}
.footer-social {
    color: #fff;
    background: rgba(255,255,255,.1);
}
.footer-social:hover { color: var(--brand); background: #fff; transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.13);
    color: rgba(255,255,255,.6);
    font-size: .84rem;
}
.footer-bottom a { color: rgba(255,255,255,.75); }

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 991.98px) {
    body { padding-top: 74px; }
    .site-header { min-height: 74px; }
    .site-logo { width: 175px; height: 52px; }
    .section-space { padding: 4.5rem 0; }
    .hero-modern { min-height: auto; padding: 4.5rem 0 6rem; }
    .hero-visual { min-height: 570px; margin-top: 1rem; }
    .hero-image-shell { inset: 0 6%; }
    .trust-strip { margin-top: -35px; }
    .trust-item { border-bottom: 1px solid var(--line); }
    .trust-item:last-child { border-bottom: 0; }
}

@media (max-width: 575.98px) {
    .display-title { font-size: 2.65rem; }
    .section-title { font-size: 2.2rem; }
    .hero-visual { min-height: 470px; }
    .hero-image-shell { inset: 0; border-radius: 7rem 7rem 1.7rem 1.7rem; }
    .hero-floating { max-width: 210px; font-size: .8rem; }
    .hero-floating.one { top: 5%; left: -2%; }
    .hero-floating.two { right: -2%; bottom: 6%; }
    .trust-strip { margin-top: -20px; }
    .about-image,
    .about-image img { min-height: 420px; }
    .package-image { height: 220px; }
}


/* V2.2 FULL RESPONSIVE */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

body {
    text-rendering: optimizeLegibility;
}

main,
.site-footer,
.hero-modern,
.page-hero,
section {
    max-width: 100%;
}

section[id] {
    scroll-margin-top: 92px;
}

.container,
.container-fluid,
.row > * {
    min-width: 0;
}

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

iframe {
    width: 100%;
    border: 0;
}

.content-prose {
    overflow-wrap: anywhere;
    word-break: normal;
}

.content-prose table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.content-prose pre,
.content-prose code {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.contact-method,
.footer-contact,
.mobile-nav-link {
    min-width: 0;
}

.contact-method span,
.footer-contact span,
.mobile-nav-link {
    overflow-wrap: anywhere;
}

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

    .hero-visual {
        min-height: 720px;
    }

    .hero-copy {
        padding-right: 2rem;
    }
}

@media (max-width: 1199.98px) {
    .display-title {
        font-size: clamp(2.75rem, 5.4vw, 4.5rem);
    }

    .hero-visual {
        min-height: 590px;
    }

    .hero-image-shell {
        inset: 2% 2% 2% 7%;
    }

    .section-space {
        padding: 5.5rem 0;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 72px;
    }

    .site-header,
    .site-header.is-scrolled {
        min-height: 72px;
    }

    .navbar {
        min-height: 72px;
    }

    .site-logo {
        width: clamp(150px, 34vw, 185px);
        height: 48px;
    }

    .navbar-toggler {
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--brand-soft);
    }

    .site-offcanvas {
        width: min(420px, 94vw) !important;
    }

    .hero-modern {
        min-height: auto;
        padding: 4rem 0 5.5rem;
    }

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

    .hero-copy .lead-soft {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-copy .d-flex.flex-wrap {
        justify-content: center;
    }

    .hero-copy .d-grid.d-sm-flex {
        justify-content: center;
    }

    .hero-visual {
        width: min(660px, 100%);
        min-height: 600px;
        margin: 1rem auto 0;
    }

    .hero-image-shell {
        inset: 0 5%;
    }

    .trust-strip {
        margin-top: -28px;
    }

    .trust-item {
        border-right: 0 !important;
    }

    .section-space {
        padding: 4.75rem 0;
    }

    .about-image {
        width: min(680px, 100%);
        margin-inline: auto;
    }

    .page-hero {
        padding: 4.5rem 0 3.5rem;
        text-align: center;
    }

    .page-hero .lead-soft {
        margin-inline: auto;
    }

    .page-hero img {
        max-height: 540px;
        object-fit: cover;
        object-position: center top;
    }

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

    .site-footer {
        text-align: center;
    }

    .site-footer .d-flex {
        justify-content: center;
    }

    .footer-contact {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 4rem 0;
    }

    .display-title {
        font-size: clamp(2.45rem, 11vw, 3.45rem);
        line-height: 1.02;
    }

    .section-title {
        font-size: clamp(2rem, 8.5vw, 2.8rem);
    }

    .lead-soft {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-modern {
        padding-top: 3.2rem;
    }

    .hero-badge {
        max-width: 100%;
        white-space: normal;
        justify-content: center;
        text-align: center;
    }

    .hero-visual {
        min-height: 530px;
    }

    .hero-floating {
        max-width: min(235px, 70vw);
        padding: .85rem;
        font-size: .82rem;
    }

    .trust-card {
        border-radius: 1.25rem;
    }

    .trust-item {
        padding: 1.2rem;
    }

    .modern-card,
    .testimonial-card,
    .contact-card {
        padding: 1.35rem;
    }

    .package-image,
    .blog-cover {
        height: 225px;
    }

    .about-image,
    .about-image img {
        min-height: 480px;
    }

    .video-card {
        height: 310px;
    }

    .cta-panel {
        padding: 2rem 1.25rem;
        border-radius: 1.5rem;
    }

    .page-hero {
        padding: 3.6rem 0 3rem;
    }

    .page-hero h1 {
        font-size: clamp(2.35rem, 10vw, 3.5rem);
    }

    .footer-logo {
        width: min(220px, 75vw);
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 68px;
    }

    .site-header,
    .site-header.is-scrolled,
    .navbar {
        min-height: 68px;
    }

    .site-logo {
        width: 152px;
        height: 44px;
    }

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

    .offcanvas-header,
    .offcanvas-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-modern {
        padding: 2.75rem 0 4.6rem;
    }

    .hero-copy .d-grid.d-sm-flex .btn,
    .cta-panel .btn,
    .contact-card button[type="submit"] {
        width: 100%;
    }

    .hero-copy .d-flex.flex-wrap {
        display: grid !important;
        gap: .65rem !important;
        text-align: left;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        min-height: 0;
        margin-top: 2rem;
        padding-bottom: 0;
    }

    .hero-image-shell {
        position: relative;
        inset: auto;
        width: 100%;
        aspect-ratio: 4 / 5;
        border-radius: 5.5rem 5.5rem 1.5rem 1.5rem;
    }

    .hero-floating.one {
        left: .5rem;
        top: 1rem;
    }

    .hero-floating.two {
        right: .5rem;
        bottom: 1rem;
    }

    .hero-floating {
        max-width: 205px;
        box-shadow: 0 12px 36px rgba(71, 29, 35, .16);
    }

    .trust-strip {
        margin-top: -16px;
    }

    .trust-item {
        align-items: flex-start;
    }

    .trust-icon {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .section-space {
        padding: 3.5rem 0;
    }

    .modern-card,
    .package-card,
    .testimonial-card,
    .blog-card,
    .contact-card {
        border-radius: 1.2rem;
    }

    .about-image,
    .about-image img {
        min-height: 390px;
        border-radius: 1.35rem;
    }

    .package-image,
    .blog-cover {
        height: 205px;
    }

    .video-card {
        height: 280px;
    }

    .contact-method {
        padding: .85rem;
        align-items: flex-start;
    }

    .contact-method i {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
    }

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

    .site-footer .row > .col-6 {
        width: 100%;
    }

    .footer-bottom {
        text-align: center;
        align-items: center;
    }

    .pagination {
        flex-wrap: wrap;
        gap: .35rem;
    }

    .pagination .page-link {
        border-radius: .65rem !important;
    }
}

@media (max-width: 380px) {
    .display-title {
        font-size: 2.25rem;
    }

    .hero-floating {
        max-width: 185px;
        font-size: .74rem;
    }

    .hero-floating i {
        display: none;
    }

    .hero-image-shell {
        border-radius: 4.25rem 4.25rem 1.25rem 1.25rem;
    }

    .section-title {
        font-size: 1.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}


/* V2.3 FOOTER HORIZONTAL OVERFLOW FIX */
html {
    overflow-x: hidden !important;
}

body {
    position: relative;
    overflow-x: hidden !important;
}

.site-footer {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    contain: inline-size;
}

.footer-wave {
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    overflow: hidden;
    pointer-events: none;
}

.footer-container {
    width: 100%;
    max-width: var(--bs-breakpoint-xxl, 1320px);
    overflow: hidden;
}

.footer-grid {
    width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.footer-grid > [class*="col-"] {
    min-width: 0;
    max-width: 100%;
}

.footer-intro,
.footer-intro *,
.footer-link,
.footer-contact,
.footer-contact span,
.footer-bottom,
.footer-bottom * {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-intro img,
.footer-intro video,
.footer-intro iframe,
.footer-intro table,
.footer-intro pre {
    max-width: 100% !important;
}

.footer-intro table,
.footer-intro pre {
    display: block;
    overflow-x: auto;
}

.footer-contact {
    width: 100%;
}

.footer-contact i {
    flex: 0 0 auto;
}

.footer-contact span {
    min-width: 0;
}

.footer-bottom {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .footer-container {
        max-width: 100%;
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .footer-grid {
        --bs-gutter-x: 0;
    }

    .footer-grid > [class*="col-"] {
        width: 100%;
        flex: 0 0 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .site-footer .d-flex {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .footer-contact {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        margin-top: 2.5rem;
    }

    .footer-wave {
        top: -24px;
        height: 25px;
        background-size: 64px 25px;
    }

    .footer-grid {
        padding-top: 2.75rem !important;
        padding-bottom: 2rem !important;
    }

    .footer-title {
        margin-bottom: .85rem;
    }

    .footer-link,
    .footer-contact {
        font-size: .95rem;
    }

    .footer-contact {
        align-items: flex-start;
        text-align: left;
        justify-content: flex-start;
    }

    .footer-bottom {
        padding-left: .25rem;
        padding-right: .25rem;
    }
}


/* AlmilaSoft portfolio presentation layer */
:root{--almila-demo-height:48px}
body.almila-demo-site{padding-top:calc(84px + var(--almila-demo-height))}
.almila-demo-bar{position:fixed;inset:0 0 auto 0;z-index:1100;min-height:var(--almila-demo-height);display:flex;align-items:center;background:#17131a;color:#fff;border-bottom:1px solid rgba(255,255,255,.12)}
.almila-demo-inner{width:100%;display:flex;align-items:center;justify-content:space-between;gap:18px;padding-block:7px;font-size:13px}
.almila-demo-inner span{color:rgba(255,255,255,.82);font-weight:600}
.almila-demo-inner a{display:inline-flex;align-items:center;gap:7px;min-height:34px;padding:0 14px;border-radius:999px;background:#fff;color:#17131a;font-weight:800;white-space:nowrap;transition:.2s ease}
.almila-demo-inner a:hover{transform:translateY(-1px);background:#fff1f2;color:#8d101d}
.almila-demo-site .site-header{top:var(--almila-demo-height)}
.demo-disabled-action{cursor:not-allowed}
.demo-disabled-action:hover{opacity:.72}
.demo-toast{position:fixed;left:50%;bottom:24px;z-index:1300;width:min(520px,calc(100% - 30px));padding:14px 18px;border-radius:14px;background:#17131a;color:#fff;box-shadow:0 22px 60px rgba(0,0,0,.28);font-weight:700;text-align:center;opacity:0;visibility:hidden;transform:translate(-50%,18px);transition:.24s ease}
.demo-toast.is-visible{opacity:1;visibility:visible;transform:translate(-50%,0)}
[data-demo-form] button.is-demo-complete{background:#2f7d59;border-color:#2f7d59}
@media(max-width:991.98px){body.almila-demo-site{padding-top:calc(74px + var(--almila-demo-height))}}
@media(max-width:720px){:root{--almila-demo-height:78px}.almila-demo-inner{align-items:flex-start;flex-direction:column;gap:6px;padding-block:9px;font-size:12px}.almila-demo-inner a{width:100%;justify-content:center;min-height:32px}.demo-toast{bottom:16px}}
