:root {
    --bs-primary: #01648e;
    --bs-primary-light: #edeff2;
    --bs-secondary: #2a2524;
    --bs-secondary-light: #d8d3d2;
    --accent: #01648e;
    --bs-gray: #808080;
    --bs-link-color-rgb: 0, 0, 0;
    --bs-link-hover-color-rgb: 91, 197, 207;
    --bs-link-color: #058b8c;
    --bs-link-hover-color: #27a5b1;
    --bs-body-bg: #fff;
    --bs-body-color: #2f3f57;
    --bs-heading-color: inherit;
    --body-font: 'Inter';
    --header-height: 85px;


    /* Font size */
    --text-xxs: 0.7rem;
    --text-xs: 0.875rem;
    --text-md: 1.2rem;
    --text-lg: 1.5rem;
    --text-xl: 2rem;
    --text-xxl: 3rem;


    --transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


.text-xxs,
.text-xxs > * {
    font-size: var(--text-xxs);
}
.text-xs,
.text-xs > * {
    font-size: var(--text-xs);
}
.text-md,
.text-md > * {
    font-size: var(--text-md);
}
.text-lg,
.text-lg > * {
    font-size: var(--text-lg);
}
.text-xxl,
.text-xxl > * {
    font-size: var(--text-xxl);
}
.cover {
    object-fit: cover;
}
.transition {
    transition: var(--transition);
}
.accent,
.accent > * {
    color: var(--accent);
}


body {
    font-family: var(--body-font);
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: calc(100% - 3rem);
}
.container .builder-section .container, 
.container .builder-section .container-fluid {
    padding: 0;
    max-width: 100%;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}
h1 {
    font-weight: 300;
}
.accent {
    color: var(--accent);
}
a {
    text-decoration: none;
    transition: var(--transition);
}
.module-text a {
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
    color: #56482f;
}
svg {
    transition: var(--transition);
}
strong {
    font-weight: 500;
}
p:last-of-type {
    margin-bottom: 0;
}

/* Buttons */
.btn {
  --bs-btn-padding-x: 2.4em;
  --bs-btn-padding-y: 1em;
  --bs-border-radius: var(--bs-border-radius-lg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
  font-size: 0.875rem;
  transition: var(--transition);
}

.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-color: #fff;
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary-light);
  --bs-btn-hover-color: var(--bs-primary);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: var(--bs-light);
  --bs-btn-active-border-color: #fff;
}
.btn-secondary {
  --bs-btn-bg: #ffffff0d;
  --bs-btn-color: #fff;
  --bs-btn-border-color: #ffffff1c;
  --bs-btn-hover-bg: var(--bs-light);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #ffffff0d;
  --bs-btn-active-border-color: #ffffff1c;
}



/* Cookie Notice */
.termsfeed-com---nb-headline {
    position: fixed !important;
}
.termsfeed-com---nb .cc-nb-main-container {
    padding: 1.5rem 2.25rem !important;
}
.cc-nb-buttons-container {
    display: flex !important;
    gap: 0.5rem;
}
body .termsfeed-com---nb .cc-nb-okagree,
body .termsfeed-com---nb .cc-nb-reject,
body .termsfeed-com---nb .cc-nb-changep {
    margin: 0 !important;
    border-radius: var(--bs-border-radius-lg) !important;
}
.termsfeed-com---palette-light .cc-nb-okagree {
    background-color: var(--bs-primary) !important;
}
.termsfeed-com---palette-light .cc-nb-reject,
.termsfeed-com---palette-light .cc-nb-changep {
    background-color: var(--bs-primary-light) !important;
    color: #000 !important;
}





header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    transition: 0.6s;
    background: #fff;
}
.scrolled-top header {
    box-shadow: 0 0 1px #c3c3c3;
}
.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 0;
}
.logo {
    max-width: 10rem;
    max-height: inherit;
    transition: var(--transition);
}
.navbar {
    padding: 0;
}
.navbar-nav {
    --bs-nav-link-color: #3e3e3e;
}
header .main-nav {
    gap: 1rem;
}
.nav-link {
    transition: var(--transition);
}
.nav-item.active .nav-link {
    box-shadow: 0px 1.5px 0px 0px var(--bs-primary);
}

header .header-right {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}
header .header-right .phone {
    height: 100%;
    aspect-ratio: 1 / 1;
}
header .header-right .phone > * {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: var(--bs-primary);
    border-radius: 100%;
}
header .header-right .phone a:not(:hover) svg {
    filter: invert();
}
header .header-right .phone a:hover {
    background-color: var(--bs-primary-light);
}
header .get-quote-cta a {
    background: var(--bs-primary);
    color: #fff;
    border-radius: var(--bs-border-radius-lg);
    padding: 0.75em 2em;
}
header .get-quote-cta a:hover {
    color: var(--bs-primary);
    background-color: var(--bs-primary-light);
}



/* Homepage */
.hp-hero {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    padding-top: 1rem;
    padding-bottom: 2rem;
}
.hp-hero .container,
.hp-hero .container > * {
    height: 100%;
}
.hp-hero-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  padding: 2rem;
  border-radius: var(--bs-border-radius-2xl);
  overflow: hidden;
}
.hp-hero-inner .bg:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #000000d9 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: calc(var(--bs-border-radius-xl) - 1px);
  z-index: 1;
}
.hp-hero-inner .left {
    max-width: 30rem;
}
.hp-hero .title > * {
    font-weight: 300;
}
.hp-hero .right .module-fickle,
.hp-hero .right form {
    background-color: #fff;
    border-radius: var(--bs-border-radius-xl);
    padding: 1.5rem;
}
.hp-hero .right form button[type="submit"] {
    width: 100%;
    margin-top: 0.5rem;
}
.hp-hero .right .module-fickle .fickle-item.fickle-title > * {
    font-size: var(--text-lg);
    color: #000;
    font-weight: 600;
}
.hp-hero-inner .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


.hp-video-slider {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hp-trusted-video .module-video {
    border-radius: var(--bs-border-radius-xl);
    overflow: hidden;
}

.hp-trusted-video .vjs-big-play-button {
    display: none;
}
.hp-trusted-video .left {
    max-width: 40rem;
}

.slick-arrow.slick-disabled {
    opacity: 0.3;
}


.mail-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0;
    text-align: center;
}

.mail-icon img {
    width: 70px;      /* mic, finuț, premium */
    height: auto;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.25s ease;
}

.mail-icon img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.video-js {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}
.video-js video {
  position: relative !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
button[type="submit"] svg {
    width: 1.3rem;
    height: auto;
    transition: var(--transition);
}
button[type="submit"]:hover svg path {
    fill: var(--bs-primary);
}

.achievements-section .module-fickle {
    text-align: center;
}
.achievements-section .module-fickle .fickle-item.fickle-title > * {
    font-size: var(--text-xl);
    color: #000;
    font-weight: 800;
}


.hp-services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}
.hp-services-cards .module-fickle {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: var(--bs-border-radius-xl);
}
.hp-services-cards .module-fickle .fickle-header {
    position: relative;
    padding-right: 5rem;
}
.hp-services-cards .module-fickle .fickle-header:after {
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    width: 3rem;
    aspect-ratio: 1 / 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 24 24' fill='%23000000'%3E%3Cg fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m11 15l3-3l-3-3'/%3E%3C/g%3E%3C/svg%3E");
    display: block;
    background-size: contain;
    opacity: 0.3;
}
.hp-services-cards .module-fickle .fickle-item.fickle-title > * {
    font-size: var(--text-md);
}
.hp-services-cards .module-fickle .fickle-item.fickle-subtitle a {
    color: var(--bs-gray);
}
.hp-services-cards .module-fickle .fickle-image {
    aspect-ratio: 4/2.5;
    border-radius: var(--bs-border-radius-lg);
    overflow: hidden;
}
.hp-services-cards .module-fickle .fickle-image img {
    width: 100%;
    height: 100%;
}
.hp-services-cards .fickle-content {
    display: none;
}

.hp-about .img {
    position: relative;
    border-radius: var(--bs-border-radius-2xl);
    overflow: hidden;
}
.hp-about .img .module-image {
    position: relative;
}
.hp-about .img .module-image:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(270deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.hp-about .img img {
    width: 100%;
}

.hp-experience-section .module-image {
    position: relative;
    border-radius: var(--bs-border-radius-xxl);
    overflow: hidden;
}
.hp-experience-section .module-image:after {
    content: 'Anyfloor';
    color: #d8d3d2;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 18vw;
    line-height: 0.7em;
    font-style: oblique;
    font-weight: 300;
    transform: translateY(20%);
}
.hp-experience-section img {
    width: 100%;
    aspect-ratio: 4/2;
    object-fit: cover;
}

.row-services-items {
    padding-top: 2rem;
}
.partners-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 1rem;
    --margin: 0.5rem;
}
.partners-gallery .slick-list {
    margin-left: calc(var(--margin) * -1);
    margin-right: calc(var(--margin) * -1);
}
.partners-gallery figure {
    display: flex;
    align-items: center;
    border: 1px solid #2e3f570a;
    border-radius: var(--bs-border-radius-xl);
    padding: 1rem;
    margin: 0;
    transition: var(--transition);
    margin: 0 var(--margin);
}
.partners-gallery figure:hover {
    border-color: var(--bs-primary);
}
.partners-gallery figure a {
    pointer-events: none;
}
.partners-gallery img {
    aspect-ratio: 4/2;
    object-fit: contain;
}



/* Blog */
.blog-hero-inner {
    display: grid;
    grid-template-columns: auto minmax(10rem, 40rem);
    gap: 2rem;
}
.post-card-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Article Page */
.post-content-wrapper img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    border-radius: var(--bs-border-radius-lg);
}
.post-image {
    aspect-ratio: 4 / 2;
}
.post-prev-next-box .btn {
    min-width: 9rem;
}


/* Portfolio */
.portfolio-gallery .module-gallery {
    white-space: nowrap;
    --margin: 0.75rem;
    --show: 5;
}
.portfolio-gallery .slick-list {
    margin-left: calc(var(--margin) * -1);
    margin-right: calc(var(--margin) * -1);
    overflow: visible;
}
.portfolio-gallery .slick-track {
    margin-left: 0;
}
.portfolio-gallery .slick-slide a {
    transition: var(--transition);
}
.portfolio-gallery .slick-slide:not(.slick-active) a {
    opacity: 0.5;
    filter: blur(5px);
}
.portfolio-gallery .module-gallery figure {
    position: relative;
    display: inline-block;
    white-space: normal;
    vertical-align: top;
    margin: var(--margin);
    width: calc(100% / var(--show) - (2 * var(--margin)));
}
.portfolio-gallery .module-gallery figure img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--bs-border-radius-lg);
}
.portfolio-gallery .slick-arrow {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    padding: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transform: translate(0, calc(-100% - 1rem));
    background: var(--bs-primary);
    border-radius: var(--bs-border-radius-lg);
}
.portfolio-gallery .slick-arrow.prev {
    transform: translate(calc(-100% - 1rem), calc(-100% - 1rem));
}
.portfolio-gallery .slick-arrow .arrow {
    display: flex;
}
.portfolio-gallery .slick-arrow svg {
    filter: invert();
}



/* About us */
.about-ba-section .left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 1rem;
    overflow: hidden; 
}
.about-ba-section .left .bot {
    position: relative;
}
.about-ba-section .left .bot img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-ba-section .left .right {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
}


/* Quote Page */
.quote-hero-section .left {
    position: sticky;
    top: var(--header-height);
    display: flex;
    min-height: calc(100vh - var(--header-height) - 2rem);
    padding-top: 1rem;
    padding-bottom: 2rem;
    padding: 2rem;
    border-radius: var(--bs-border-radius-2xl);
    overflow: hidden;
}
.quote-hero-section .left-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
.quote-hero-section .left .desc {
    max-width: 30rem;
}

.quote-hero-section .bg,
.quote-hero-section .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.quote-hero-section .slider .slick-list,
.quote-hero-section .slider .slick-track {
    height: 100%;
}
.quote-hero-section .bg:before,
.quote-hero-section .slider:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000d9 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: calc(var(--bs-border-radius-xl) - 1px);
    z-index: 1;
}
.quote-hero-section .slider figure {
    margin: 0;
    height: 100%;
}
.quote-hero-section .slider figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.quote-hero-section .bg > * {
    height: 100%;
    object-fit: cover;
}

.quote-hero-section .right {
    padding: 2rem 2rem 0 2rem;
}

#request_offer_looking_for {
    overflow: hidden;
}
#request_offer_looking_for .check {
    width: 50%;
    float: left;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
}
#request_offer_looking_for > label:first-child {
    width: 100%;
    float: left;
}
#request_offer_looking_for .check > label {
    cursor: pointer;
}
#request_offer_looking_for .check [type="checkbox"] {
    transform: translateY(1px);
    margin-right: 3px;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group > label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    margin: 0;
    font-size: var(--text-xs);
    background: #fff;
    pointer-events: none;
    transition: var(--transition);
}
.form-group.focus label {
    top: 0;
    left: 0.5rem;
    padding: 0 0.5em;
}
.form-control {
    box-shadow: none;
    padding: 0.7rem 1rem;
    color: #000;
    font-size: var(--text-xs);
}
.form-control:focus {
    color: #000;
    box-shadow: none;
    border-color: var(--bs-primary);
}
input.form-control {
    border-radius: var(--bs-border-radius-lg);
}
.c-form .form-group {
    position: relative;
}
.c-error {
    position: absolute;
    bottom: -30px;
    left: 0;
    background: #af301a;
    color: #fff !important;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    line-height: 1;
    margin: 0;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
}
.item-acceptance .c-error {
    bottom: -18px;
}
.c-error:before {
    border-left: 10px solid #af301a;
    border-top: 10px solid transparent;
    content: "";
    position: absolute;
    top: -4px;
    left: 30px;
    transform: rotate(135deg);
}
.acceptance {
    font-size: 13px;
    font-weight: 600;
}
footer {
    background: rgba(216, 211, 210, 1);
}
footer a,
.footer-contact-items li a,
.footer-contact-items p {
    color: #000 !important;
    opacity: 1 !important;
}
footer a:hover {
    color: #000;
}
.footer-logo-wrapper {
    align-items: center;
    max-width: 35rem;
}
.logo-footer {
    max-width: 12rem !important;
}
.footer-details-inner {
    display: flex;
    flex-direction: column;
}
.footer-details-inner .module-fickle {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.footer-details-inner .module-fickle:last-child {
    margin-bottom: 0;
}
.footer-menu-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
}
.footer-menu-wrapper h4 {
  font-size: var(--text-md);
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.5rem;
}

.row-footer-contact-items {
    text-align: center;
}
.row-footer-contact-items .col-lg-4 {
    align-self: flex-end;
}
.row-footer-contact-items .fickle-icon {
    display: block;
}
.row-footer-contact-items .fickle-icon i {
    font-size: 45px;
    color: #e8ab40;
}
.row-footer-contact-items .fickle-icon i.fa-mobile {
    font-size: 55px;
}
.row-footer-descriptions p {
    font-size: 13px;
    max-width: 800px;
}
.row-footer-descriptions h4,
.row-footer-descriptions h5,
.row-footer-descriptions p {
    margin-left: auto;
    margin-right: auto;
}
.row-footer-descriptions .col-lg-6:nth-child(1) h4,
.row-footer-descriptions .col-lg-6:nth-child(1) h5 {
    max-width: 400px;
}
.row-footer-descriptions .col-lg-6 {
    align-self: flex-end;
}
.row-footer-descriptions .col-lg-6 p {
    max-width: 400px;
}
.row-footer-descriptions > div:last-child .module-text {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.row-bottom-part {
    font-size: 13px;
}
.row-footer-nav .nav-item {
    position: relative;
    margin-right: 15px;
    padding-right: 15px;
    margin-bottom: 10px;
    line-height: 1.1;
}
.row-footer-nav .nav-item:last-child {
    margin-right: 0;
    padding-right: 0;
}
.row-footer-nav .nav-item:after {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    border-radius: 2px;
    height: 4px;
    width: 4px;
    background: #ccc;
}
.row-footer-nav .nav-item:last-child:after {
    display: none;
}
.row-footer-nav .module-code {
    padding-bottom: 35px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.back-to-top {
    height: 55px;
    width: 55px;
    margin: auto;
    border: 2px solid #ccc;
    text-align: center;
    border-radius: 55px;
    padding: 10px 0 0 1px;
}
.back-to-top i {
    display: block;
    font-size: 11px;
    color: #ccc;
    transition: 0.2s;
}
.back-to-top span {
    display: block;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ccc;
    margin-top: 2px;
    transition: 0.2s;
}
.back-to-top:hover i,
.back-to-top:hover span {
    color: #e8ab40;
}



#lightboxOverlay {
    height: 100vh !important;
    position: fixed;
    top: 0;
}

.row-services-detail-items .module-fickle:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
#lightbox {
    position: fixed;
    height: fit-content;
    top: 0 !important;
    bottom: 0;
    margin: auto;
}
.buttonnav {
    padding: 10px !important;
    text-align: center !important;
}
.buttonnav .btn {
    min-width: 280px !important;
}
.row-footer-descriptions h3 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    font-size: 1.25rem;
}

.row-checks {
    background: linear-gradient(135deg, #fffaf3 0%, #f8f3ea 50%, #e5d5c3 100%);
    border-radius: 12px;
    padding: 60px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.gallery-big {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    padding: 0 10px;
}
.gallery-big figure {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}
.gallery-big figure a {
    width: 100%;
    height: 100%;
}

.row-services-items .fickle-title h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.gallery-big figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.gallery-big figure:nth-child(4n) {
    grid-column: span 2;
}
.gallery-big figure:nth-child(3n) {
    grid-row: span 2;
}
.gallery-big figure:nth-child(8n) {
    grid-column: span 2;
    grid-row: span 2;
}

.row-services-detail-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.row-services-detail-items .col-lg-4,
.row-services-detail-items .col-md-6 {
    display: flex;
}

.row-services-detail-items .module-fickle {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-width: 350px;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}


.contact-quote .project-details-row .border-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    border: 1px solid #dee2e6;
    border-radius: var(--bs-border-radius-lg);
    transition: var(--transition);
}
.contact-quote .project-details-row .border-form .form-group:hover,
.contact-quote .project-details-row .form-group.border-form:hover {
    border-color: var(--bs-primary);
}
.contact-quote .project-details-row .border-form .form-group > label,
.contact-quote .project-details-row .border-form > label {
    position: relative;
    background-color: inherit;
    font-size: inherit;
    transform: none;
    left: auto;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.contact-quote .project-details-row .border-form .form-group .check label,
.contact-quote .project-details-row .border-form .check label,
.contact-quote .project-details-row .border-form .radio label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.contact-quote .project-details-row .border-form .check,
.contact-quote .project-details-row .border-form .radio {
    margin-bottom: 0.5rem;
}
.contact-quote .project-details-row .border-form .check:last-child,
.contact-quote .project-details-row .border-form .radio:last-child {
    margin-bottom: 0;
}
.contact-quote .project-details-row .border-form  input[type="checkbox"],
.contact-quote .project-details-row .border-form  input[type="radio"] {
    flex-shrink: 0;
    width: 1.3rem;
    height: auto;
    aspect-ratio: 1/1;
}

.contact-quote .project-details-row .form-group.border-form {
    padding: 0.7rem 1rem;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}




.contact-quote .project-details-row .project-details-section-2 .form-group:has(.text-form) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.contact-quote .agreement-radio.item-acceptance label {
    display: flex;
    gap: 0.5rem;
}
.contact-quote .agreement-radio.item-acceptance input {
    width: 1.3rem;
    height: auto;
    aspect-ratio: 1/1;
}

.contact-quote .form-group.btn-section button[type="submit"] {
    width: 100%;
}




/* Dawid */
.txt-flex-end {
    display: flex;
    align-items: flex-end;
}

.list ul {
  padding-left: 1rem;
}


/* ----------------------------------------------- */
/* Grid layout */
.wrap-grid-4cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); 
    gap: 2.5rem;
}
.parallax-section > * {
    position: relative;
    z-index: 1;
}
.parallax-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
}
.section-scroll-image {
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}


.module-category-item {
  background: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}


.module-category-item .module-category-item-image {
  aspect-ratio: 4/2.5;
  width: 100%;
  box-shadow: 0 0 1px #00000042;
  overflow: hidden;
}
.module-category-item .module-category-item-image:hover img {
  transform: scale(1.1);
}




.module-category-item .module-category-item-title h3 {
  color: #111827;
}

.module-category-item .module-category-item-title h3 a {
  color: inherit;
  text-decoration: none;
}

.module-category-item .module-category-item-excerpt {
  color: #4b5563;
  flex-grow: 1;
}

.module-category-item .module-category-item-readmore {
  padding: 3rem 0rem 1.25rem;
}


/* ----------------------------------------------- */


/* Liniile animate */
.fickle-line-left,
.fickle-line-right {
    position: absolute;
    height: 2px;
    background: white;
    opacity: 0;
    transition: all 0.6s ease;
}

.fickle-line-left {
    top: 0;
    left: 0;
    width: 0; /* începe de la 0 */
}

.fickle-line-right {
    bottom: 0;
    right: 0;
    width: 0;
}



/* -------------------------------------------- */
/* fickle services card */
.fickle-services-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #dbe3ea;
  border-radius: var(--bs-border-radius-xl);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 16px;
  text-align: left;
}

.fickle-services-card .fickle-image {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: var(--bs-border-radius-lg);
  background: #f2f5f8;
  transition: all 0.5s ease;
  background-size: cover;
  margin-bottom: 1rem;
}

.fickle-services-card .fickle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.fickle-services-card:hover .fickle-image img {
  transform: scale(1.1);
}

.fickle-services-card .fickle-title h4 {
  color: #000;
  font-size: var(--text-md);
}


/* ------------------------------------------- */
/* service single card */
.fickle-services-secondary-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--bs-border-radius-xl);
  overflow: hidden;
  padding: 16px;
  text-align: center;
}

.fickle-services-secondary-card .fickle-image {
  position: relative;
  max-width: 13rem;
  aspect-ratio: 1 /1 ;
  overflow: hidden;
  border-radius: 50%;
  background: #f2f5f8;
  transition: all 0.5s ease;
  background-size: cover;
}

.fickle-services-secondary-card .fickle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--bs-border-radius-xl);
  display: block;
  transition: all 0.5s ease;
}

.fickle-services-secondary-card:hover .fickle-image img {
  transform: scale(1.1);
}

.fickle-services-secondary-card .fickle-title {
  margin-top: 14px;
}

.fickle-services-secondary-card .fickle-title h4 {
  font-weight: 700;
  text-transform: uppercase;
  color: #1a1a1a;
font-size: var(--text-md);
  line-height: 1.2;
}

.fickle-services-secondary-card .fickle-text-content {
  padding: 0 0px 8px;
  line-height: 1.5;
}



/* -------------------------------------- */
/* fickle find out more */
.fickle-find-out-more.module-fickle-basic {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--bs-border-radius-xl);
  overflow: hidden;
  cursor: pointer;
}

.fickle-find-out-more.module-fickle-basic .fickle-image {
  height: 100%;
}

.fickle-find-out-more.module-fickle-basic .fickle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fickle-find-out-more.module-fickle-basic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  z-index: 2;
}

.fickle-find-out-more.module-fickle-basic .fickle-header {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
  transition: all 0.5s ease;
  color: white;
  padding: 1rem 0;
}

.fickle-find-out-more.module-fickle-basic .fickle-header h4 a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
}

.fickle-find-out-more.module-fickle-basic .fickle-line {
  width: 0;
  height: 2px;
  background: white;
  margin: 6px auto;
  opacity: 0;
  transition: width 0.4s ease, opacity 0.4s ease;
}

.fickle-find-out-more.module-fickle-basic:hover::after {
  background: rgba(0, 0, 0, 0.4);
}

.fickle-find-out-more.module-fickle-basic:hover .fickle-header {
  bottom: 50%;
  transform: translateY(50%);
}

.fickle-find-out-more.module-fickle-basic:hover .fickle-line {
  width: 60%;
  opacity: 1;
}

.fickle-find-out-more.module-fickle-basic:hover .fickle-image img {
  transform: scale(1.05);
}


/* -------------------------------------------- */
/* footer */


.footer-contact-items .secondary-menu .nav{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


.footer-contact-items .logo-footer{
  max-width: 20rem;
}

.footer-contact-items .logo-footer img {
  width: 100%;
  height: auto;
}

.footer-contact-items .nav-link {
  padding: 0;
}


footer {
  position: relative;
  overflow: hidden;
}

.txt-bottom-footer{
  position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -75%);
}

.txt-bottom-footer p {
      color: black;
    opacity: .1;
    font-size: 18vw;
    line-height: 0.7em;
    font-style: oblique;
    font-weight: 300;
}


.info-footer a {
  color: var(--bs-primary);

}



/* ----------------------------------------------- */
/* services page */

.s-wrap-hero{
  display: flex;
  justify-content: space-between;
}

.s-wrap-hero h1 {
  text-align: left !important;
}
.s-wrap-hero p {
  max-width: 30rem;
}

.s-wrap-photo-hero {
  display: flex;
  gap: 1rem;
}


.s-wrap-photo-hero .image-left {
  max-width: 55%;
  max-height: 22rem;
}

.s-wrap-photo-hero .image-left img {
  width: 100%;
  height: 100%;
  border-radius: var(--bs-border-radius-xl);
  object-fit: cover;
}



.s-wrap-photo-hero .image-right {
  max-width: 45%;
    max-height: 22rem;

}

.s-wrap-photo-hero .image-right img {
  width: 100%;
  height: 100%;
  border-radius: var(--bs-border-radius-xl);
    object-fit: cover;

}


.s-hero .title > *,
.s-capabilities .title > *,
.section-services .title> * {
  font-weight: 300;
}




/* --------------------------------------------------- */
/* contact page */

.contact-pg {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    padding-top: 1rem;
    padding-bottom: 2rem;
}
.contact-pg  .container,
.contact-pg  .container > * {
    height: 100%;
}
.contact-pg-inner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  padding: 2rem;
  border-radius: var(--bs-border-radius-2xl);
  overflow: hidden;
}
.contact-pg-inner .bg:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #000000d9 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: calc(var(--bs-border-radius-xl) - 1px);
  z-index: 1;
}
.contact-pg-inner .left {
    max-width: 30rem;
          display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.contact-pg-inner .right {
  height: 100%;
  max-width: 35rem;
}

.contact-pg .right  .module-code{
  height: 100%;
}
.contact-pg .right form{
  height: 100%;
}
.contact-pg  .title > * {
    font-weight: 300;
}
.contact-pg .right .module-fickle,
.contact-pg form {
    background-color: #fff;
    border-radius: var(--bs-border-radius-xl);
    padding: 1.5rem;
}
.contact-pg form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-pg form .builder-section {
  height: 100%;
}
.contact-pg  .right form button[type="submit"] {
    width: 100%;
    margin-top: 0.5rem;
}
.contact-pg  .right .module-fickle .fickle-item.fickle-title > * {
    font-size: 1.5rem;
    color: #000;
    font-weight: 600;
}
.contact-pg-inner .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.contact-pg-inner .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-pg-slider {
    display: flex;
    align-items: center;
    gap: 1rem;
}

button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
button[type="submit"] svg {
    width: 1.3rem;
    height: auto;
    transition: var(--transition);
}
button[type="submit"]:hover svg path {
    fill: var(--bs-primary);
}

.contact-wrap-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
}

.contact-wrap-info a {
  color: white;
  text-decoration: none;
}

.contact-wrap-info a:hover{
  text-decoration: underline;
}

.message-col .form-group > label {
    top: unset;
}


.s-single-wrap-photo-hero {
  display: grid;
}


.s-single-wrap-photo-hero .image-left {
  max-width: 100%;
  max-height: 22rem;
}

.s-single-wrap-photo-hero .image-left img {
  width: 100%;
  height: 100%;
  border-radius: var(--bs-border-radius-xl);
  object-fit: cover;
}
.s-single-photo img {
      width: 100%;
    height: 100%;
  display: block;
    object-fit: cover;
    border-radius: var(--bs-border-radius-lg);
}



/* ---------------------------------------- */
/* section text-photo */
.col-sidebar img {
  width: 35rem;
  margin: 0 auto;
  height: auto;
  border-radius: 8px;
}

.col-sidebar .slick-dots {
  bottom: -8px;
}

.col-sidebar .slick-dots li button:before {
  font-size: 9px;
  color: var(--bs-primary);
  opacity: 0.7;
}

.col-sidebar .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--bs-primary);
}


/* ------------------------------------------- */
/* wrap fickle numbers */
.wrap-fickle-numeroted-photo .module-fickle-basic {
  position: relative;
  padding: 40px 20px 40px 60px;
  border-left: 2px solid #ddd;
  margin-left: 20px;

  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
}

.wrap-fickle-numeroted-photo .module-fickle-basic:not(.fickle-has-image) {
  grid-template-columns: 1fr;
}

.wrap-fickle-numeroted-photo .module-fickle-basic::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 55px; 
  width: 16px;
  height: 16px;
  background: white;
  border: 2px solid #111;
  border-radius: 50%;
}

/* ===== TITLU ===== */
.module-fickle-basic .fickle-title h4 {
  font-size: 20px;
  margin: 0 0 12px;
  color: #111;
}

.module-fickle-basic .fickle-subtitle paragraph,
.module-fickle-basic .fickle-text-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.65;
}

.module-fickle-basic .fickle-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
}

.module-fickle-basic .fickle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------------------------------- */
/* Section clean spacing */

/* Wrapper */
.wrap-numbers {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px 0;
}

.fickle-number-steps {
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}

.fickle-number-steps:last-child {
  border-bottom: none;
}

/* TITLU + BADGE GHOST */
.fickle-number-steps .fickle-title h4 {
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #111;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fickle-number-steps .fickle-title h4::before {
  content: attr(data-step);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid #111;
  font-size: 13px;
  font-weight: 600;
  color: #111;
}