:root {
    --sbw-blue: #071c36;
    --sbw-blue-2: #0b3567;
    --sbw-blue-3: #1059a6;
    --sbw-yellow: #ffc400;
    --sbw-yellow-dark: #e0a900;
    --sbw-ink: #122033;
    --sbw-muted: #64748b;
    --sbw-bg: #f4f7fb;
    --sbw-white: #ffffff;
    --sbw-border: rgba(7, 28, 54, 0.10);
    --sbw-shadow: 0 20px 55px rgba(7, 28, 54, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--sbw-ink);
    background: var(--sbw-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

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

.section-padding-sm {
    padding: 72px 0;
}

.bg-soft {
    background: var(--sbw-bg);
}

.text-brand {
    color: var(--sbw-blue-3) !important;
}

.text-accent {
    color: var(--sbw-yellow-dark) !important;
}

.bg-brand {
    background: var(--sbw-blue) !important;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
    color: var(--sbw-blue-3);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 34px;
    height: 4px;
    background: var(--sbw-yellow);
    border-radius: 999px;
}

.section-title {
    max-width: 780px;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.55rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.04em;
}

.section-subtitle {
    max-width: 720px;
    color: var(--sbw-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.btn-brand,
.btn-outline-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 48px;
    padding: .75rem 1.25rem;
    border-radius: .7rem;
    font-weight: 800;
    transition: all .25s ease;
}

.btn-brand {
    color: var(--sbw-blue);
    border: 1px solid var(--sbw-yellow);
    background: var(--sbw-yellow);
    box-shadow: 0 12px 30px rgba(255, 196, 0, .24);
}

.btn-brand:hover {
    color: var(--sbw-blue);
    border-color: #ffd235;
    background: #ffd235;
    transform: translateY(-2px);
}

.btn-outline-brand {
    color: var(--sbw-blue);
    border: 1px solid rgba(7, 28, 54, .20);
    background: transparent;
}

.btn-outline-brand:hover {
    color: var(--sbw-white);
    border-color: var(--sbw-blue);
    background: var(--sbw-blue);
}

.topbar {
    padding: .6rem 0;
    color: rgba(255, 255, 255, .78);
    background: #041326;
    font-size: .82rem;
}

.topbar a {
    color: rgba(255, 255, 255, .9);
}

.topbar i {
    color: var(--sbw-yellow);
}

.site-navbar {
    min-height: 78px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sbw-border);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--sbw-blue) !important;
    font-weight: 900;
    letter-spacing: -.04em;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--sbw-yellow);
    background: var(--sbw-blue);
    border-radius: 14px 14px 14px 4px;
    font-size: 1.35rem;
    box-shadow: 0 10px 24px rgba(7, 28, 54, .18);
}

.brand-copy {
    line-height: 1.05;
}

.brand-copy small {
    display: block;
    margin-top: .25rem;
    color: var(--sbw-muted);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-navbar .nav-link {
    position: relative;
    padding: .75rem .85rem !important;
    color: #24364a;
    font-size: .93rem;
    font-weight: 700;
}

.site-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: .85rem;
    right: .85rem;
    bottom: .35rem;
    height: 3px;
    background: var(--sbw-yellow);
    border-radius: 999px;
    transform: scaleX(0);
    transition: transform .25s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: var(--sbw-blue-3);
}

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

.hero-wrap {
    position: relative;
    background: var(--sbw-blue);
}

.hero-carousel .carousel-item {
    background: var(--sbw-blue);
}

.hero-carousel img {
    width: 100%;
    height:325px !important;
    aspect-ratio: 2 / 1;
    object-fit:fill;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 7%;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 46px;
    height: 46px;
    padding: .8rem;
    background-size: 42%;
    background-color: rgba(7, 28, 54, .78);
    border: 1px solid rgba(255, 255, 255, .30);
    border-radius: 50%;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 32px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background-color: #fff;
}

.hero-quickbar {
    position: relative;
    z-index: 3;
    margin-top: -28px;
}

.quickbar-card {
    overflow: hidden;
    color: var(--sbw-white);
    background: var(--sbw-blue);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.2rem;
    box-shadow: var(--sbw-shadow);
}

.quickbar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 104px;
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, .10);
}

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

.quickbar-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    color: var(--sbw-blue);
    background: var(--sbw-yellow);
    border-radius: 15px;
    font-size: 1.35rem;
}

.quickbar-item h3 {
    margin: 0 0 .25rem;
    font-size: 1rem;
    font-weight: 800;
}

.quickbar-item p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .82rem;
}

.about-collage {
    position: relative;
    min-height: 590px;
}

.about-main-image,
.about-small-image {
    position: absolute;
    overflow: hidden;
    border-radius: 1.4rem;
    box-shadow: var(--sbw-shadow);
}

.about-main-image {
    inset: 0 70px 55px 0;
}

.about-small-image {
    right: 0;
    bottom: 0;
    width: 54%;
    height: 48%;
    border: 8px solid var(--sbw-white);
}

.about-main-image img,
.about-small-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.experience-badge {
    position: absolute;
    top: 28px;
    right: 15px;
    z-index: 2;
    width: 142px;
    padding: 1.2rem;
    color: var(--sbw-blue);
    background: var(--sbw-yellow);
    border-radius: 1.1rem;
    box-shadow: 0 18px 40px rgba(7, 28, 54, .18);
}

.experience-badge strong {
    display: block;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 900;
}

.experience-badge span {
    display: block;
    margin-top: .45rem;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.check-list {
    display: grid;
    gap: .9rem;
    padding: 0;
    margin: 1.7rem 0 2rem;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: #31455a;
    font-weight: 700;
}

.check-list i {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    color: var(--sbw-blue);
    background: var(--sbw-yellow);
    border-radius: 50%;
    font-size: .8rem;
}

.service-card {
    position: relative;
    height: 100%;
    padding: 1.8rem;
    background: var(--sbw-white);
    border: 1px solid var(--sbw-border);
    border-radius: 1.15rem;
    box-shadow: 0 15px 40px rgba(7, 28, 54, .06);
    transition: all .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 89, 166, .25);
    box-shadow: var(--sbw-shadow);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 1.3rem;
    color: var(--sbw-yellow);
    background: var(--sbw-blue);
    border-radius: 16px 16px 16px 5px;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.16rem;
    font-weight: 800;
}

.service-card p {
    color: var(--sbw-muted);
    font-size: .93rem;
    line-height: 1.7;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--sbw-blue-3);
    font-size: .86rem;
    font-weight: 800;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: 1.25rem;
    background: var(--sbw-blue);
    box-shadow: var(--sbw-shadow);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: fill;
    transition: transform .5s ease;
}

.portfolio-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(2, 14, 30, .92) 100%);
}

.portfolio-card:hover img {
    transform: scale(1.06);
}

.portfolio-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.55rem;
    color: var(--sbw-white);
}

.portfolio-tag {
    display: inline-block;
    margin-bottom: .65rem;
    padding: .35rem .65rem;
    color: var(--sbw-blue);
    background: var(--sbw-yellow);
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.portfolio-content h3 {
    margin-bottom: .3rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.portfolio-content p {
    margin: 0;
    color: rgba(255, 255, 255, .70);
    font-size: .84rem;
}

.stats-section {
    position: relative;
    overflow: hidden;
    background: var(--sbw-blue);
}

.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
    background-size: 42px 42px;
}

.stat-item {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    display: block;
    color: var(--sbw-yellow);
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1;
    font-weight: 900;
}

.stat-label {
    display: block;
    margin-top: .7rem;
    color: rgba(255, 255, 255, .78);
    font-size: .83rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.process-card {
    position: relative;
    height: 100%;
    padding: 1.7rem;
    background: var(--sbw-white);
    border: 1px solid var(--sbw-border);
    border-radius: 1rem;
}

.process-number {
    display: inline-grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin-bottom: 1rem;
    color: var(--sbw-blue);
    background: var(--sbw-yellow);
    border-radius: 13px;
    font-weight: 900;
}

.process-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
}

.process-card p {
    margin: 0;
    color: var(--sbw-muted);
    font-size: .9rem;
    line-height: 1.65;
}

.client-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}

.client-pill {
    padding: .7rem 1rem;
    color: #32465d;
    background: var(--sbw-white);
    border: 1px solid var(--sbw-border);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 4.5rem);
    color: var(--sbw-white);
    background: linear-gradient(135deg, var(--sbw-blue), var(--sbw-blue-2));
    border-radius: 1.5rem;
    box-shadow: var(--sbw-shadow);
}

.cta-panel::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    background: var(--sbw-yellow);
    border-radius: 50%;
    opacity: .12;
}

.cta-panel > * {
    position: relative;
    z-index: 2;
}

.cta-panel h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -.04em;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 90px;
    color: var(--sbw-white);
    background: linear-gradient(110deg, rgba(4, 19, 38, .96), rgba(11, 53, 103, .86)), url('../images/container-body.webp') center/cover no-repeat;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: radial-gradient(circle at 70% 30%, var(--sbw-yellow) 0, transparent 24%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    max-width: 800px;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    font-weight: 900;
    letter-spacing: -.055em;
}

.page-hero p {
    max-width: 700px;
    color: rgba(255, 255, 255, .76);
    font-size: 1.07rem;
    line-height: 1.75;
}

.breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, .45);
    --bs-breadcrumb-item-active-color: var(--sbw-yellow);
}

.breadcrumb a {
    color: rgba(255, 255, 255, .75);
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem;
    margin-bottom: 2.2rem;
}

.gallery-filter .btn {
    padding: .65rem 1rem;
    color: var(--sbw-blue);
    background: var(--sbw-white);
    border: 1px solid var(--sbw-border);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
}

.gallery-filter .btn.active,
.gallery-filter .btn:hover {
    color: var(--sbw-blue);
    border-color: var(--sbw-yellow);
    background: var(--sbw-yellow);
}

.gallery-item {
    transition: opacity .25s ease, transform .25s ease;
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    background: var(--sbw-blue);
    border-radius: 1.1rem;
    box-shadow: 0 14px 38px rgba(7, 28, 54, .10);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform .45s ease;
}


.gallery-card:hover img {
    transform: scale(1.07);
}

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    color: var(--sbw-white);
}

.gallery-overlay h3 {
    margin: 0 0 .2rem;
    font-size: 1rem;
    font-weight: 800;
}

.gallery-overlay span {
    color: rgba(255, 255, 255, .68);
    font-size: .74rem;
}

.gallery-zoom {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    color: var(--sbw-blue);
    background: var(--sbw-yellow);
    border-radius: 50%;
}

.modal-gallery .modal-content {
    background: transparent;
    border: 0;
}

.modal-gallery .modal-body {
    padding: 0;
}

.modal-gallery img {
    max-height: 85vh;
    width: 100%;
    object-fit: contain;
    background: #020b16;
    border-radius: 1rem;
}

.modal-gallery .btn-close {
    position: absolute;
    top: -38px;
    right: 0;
    z-index: 5;
    filter: invert(1);
    opacity: 1;
}

.feature-panel {
    height: 100%;
    padding: 1.6rem;
    background: var(--sbw-white);
    border: 1px solid var(--sbw-border);
    border-radius: 1rem;
}

.feature-panel i {
    color: var(--sbw-yellow-dark);
    font-size: 1.6rem;
}

.feature-panel h3 {
    margin-top: 1rem;
    font-size: 1.02rem;
    font-weight: 800;
}

.feature-panel p {
    margin: 0;
    color: var(--sbw-muted);
    font-size: .88rem;
    line-height: 1.65;
}

.contact-card {
    height: 100%;
    padding: 1.5rem;
    background: var(--sbw-white);
    border: 1px solid var(--sbw-border);
    border-radius: 1rem;
}

.contact-card i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--sbw-yellow);
    background: var(--sbw-blue);
    border-radius: 14px;
    font-size: 1.2rem;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 800;
}

.contact-card p,
.contact-card a {
    margin: 0;
    color: var(--sbw-muted);
    font-size: .9rem;
    line-height: 1.65;
}

.contact-form {
    padding: clamp(1.5rem, 4vw, 2.6rem);
    background: var(--sbw-white);
    border: 1px solid var(--sbw-border);
    border-radius: 1.3rem;
    box-shadow: var(--sbw-shadow);
}

.form-label {
    color: #2b3f55;
    font-size: .83rem;
    font-weight: 800;
}

.form-control,
.form-select {
    min-height: 50px;
    border-color: rgba(7, 28, 54, .14);
    border-radius: .7rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--sbw-blue-3);
    box-shadow: 0 0 0 .22rem rgba(16, 89, 166, .12);
}

textarea.form-control {
    min-height: 150px;
}

.map-frame {
    overflow: hidden;
    min-height: 520px;
    border-radius: 1.3rem;
    box-shadow: var(--sbw-shadow);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, .72);
    background: #031225;
}

.site-footer::after {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: var(--sbw-yellow);
    border-radius: 50%;
    opacity: .05;
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 76px 0 50px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--sbw-white);
    font-weight: 800;
}

.site-footer h4 {
    margin-bottom: 1.2rem;
    font-size: .95rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: rgba(255, 255, 255, .64);
    font-size: .88rem;
    line-height: 1.8;
}

.site-footer a:hover {
    color: var(--sbw-yellow);
}

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

.footer-links li + li {
    margin-top: .45rem;
}

.footer-contact {
    display: grid;
    gap: .75rem;
}

.footer-contact div {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
}

.footer-contact i {
    margin-top: .25rem;
    color: var(--sbw-yellow);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1040;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #fff;
    background: #25d366;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .20);
    font-size: 1.55rem;
    transition: transform .2s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.03);
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 90px;
    z-index: 1030;
    display: none;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--sbw-yellow);
    background: var(--sbw-blue);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(7, 28, 54, .20);
}

.back-to-top.show {
    display: grid;
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 78px 0;
    }

    .site-navbar .navbar-collapse {
        padding: 1rem 0 1.3rem;
    }

    .site-navbar .nav-link::after {
        left: 0;
        right: auto;
        bottom: .35rem;
        width: 38px;
    }

    .hero-quickbar {
        margin-top: 0;
        padding-top: 1.2rem;
    }

    .quickbar-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

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

    .about-collage {
        min-height: 520px;
        margin-bottom: 2.3rem;
    }

    .page-hero {
        padding: 90px 0 75px;
    }
}

@media (max-width: 767.98px) {
    .topbar .topbar-hours,
    .topbar .topbar-address {
        display: none;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .hero-carousel img {
        aspect-ratio: 2 / 1;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        display: none;
    }

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

    .about-main-image {
        inset: 0 35px 55px 0;
    }

    .about-small-image {
        width: 55%;
        height: 42%;
    }

    .experience-badge {
        top: 18px;
        right: 0;
        width: 120px;
        padding: 1rem;
    }

    .experience-badge strong {
        font-size: 1.8rem;
    }

    .portfolio-card,
    .portfolio-card img {
        min-height: 310px;
    }

    .gallery-card {
        height: 290px;
    }

    .footer-main {
        padding-top: 60px;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 64px 0;
    }

    .section-padding-sm {
        padding: 56px 0;
    }

    .hero-carousel img {
        aspect-ratio: 2 / 1;
    }

    .quickbar-item {
        min-height: auto;
        padding: 1.2rem;
    }

    .about-collage {
        min-height: 380px;
    }

    .about-small-image {
        width: 58%;
        height: 40%;
    }

    .gallery-card {
        height: 260px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }

    .back-to-top {
        right: 20px;
        bottom: 80px;
    }
}
