/* ============================================================
   LUKMAL – Malowanie Dachów | Główny arkusz stylów
   Kolory: czerwony #CC1B1B, ciemny #111111, biały #ffffff
============================================================ */

:root {
    --color-red:        #CC1B1B;
    --color-red-dark:   #a81515;
    --color-red-light:  #e52020;
    --color-dark:       #111111;
    --color-dark-2:     #1a1a1a;
    --color-dark-3:     #222222;
    --color-white:      #ffffff;
    --color-light:      #f7f7f7;
    --color-light-2:    #eeeeee;
    --color-text:       #333333;
    --color-text-muted: #666666;
    --color-border:     #e0e0e0;
    --font-main:        'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
    --transition:       0.28s ease;
    --radius:           6px;
    --shadow:           0 4px 20px rgba(0,0,0,0.08);
    --shadow-dark:      0 6px 28px rgba(0,0,0,0.35);
}

/* ---- CONTAINER OVERRIDE (Bootstrap xl default 1140px → 1400px) ---- */
@media (min-width: 1200px) {
    .container { max-width: 1400px; }
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.75;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none !important; color: inherit; transition: var(--transition); }
a:hover { text-decoration: none !important; }
ul, ol { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--color-dark); }

/* ---- UTILITIES ---- */
.text-red    { color: var(--color-red) !important; }
.bg-dk       { background: var(--color-dark); }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ---- FORM / ALERT (from original) ---- */
#alert, #alert p {
    text-align: center; line-height: 2; padding: 0; margin: 0;
    width: 100%; background: green; color: white; overflow: hidden;
    border-radius: 0; border: none;
}
.alert { display: none; }
.alert.alert-success { display: block; margin-top: 1rem !important; }
.g-recaptcha > div { margin-bottom: 1rem; }
@media(max-width:600px){ .g-recaptcha { transform: scale(.75); } }
.form-group { width: 100%; }
.invalid-feedback { text-align: center; }
button:focus, a:focus { outline: none; }

/* ---- PRELOADER (aduMal) ---- */
.preloader {
    position: fixed; left: 0; top: 0;
    z-index: 9999; width: 100%; height: 100%;
    background: #fff;
}
.preloader .loader {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 6px solid #e0e0e0;
    border-top-color: var(--color-red);
    animation: l3 0.85s infinite linear;
    position: absolute; left: 50%; top: 50%;
    margin-left: -28px; margin-top: -28px;
}
@keyframes l3 { to { transform: rotate(360deg); } }

/* ---- SPACERS ---- */
.space16 { height: 16px; display: block; }
.space20 { height: 20px; display: block; }
.space30 { height: 30px; display: block; }
.space48 { height: 48px; display: block; }

/* ---- SCROLL PROGRESS CIRCLE (aduMal) ---- */
.progress-wrap {
    position: fixed; right: 30px; bottom: 30px;
    height: 56px; width: 56px;
    cursor: pointer; display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0,0,0,0.1);
    z-index: 10000; opacity: 0; visibility: hidden;
    transform: translateY(15px); transition: all 200ms linear;
    color: var(--color-red);
}
.progress-wrap.active-progress { opacity: 1; visibility: visible; transform: translateY(0); }
.progress-wrap::after {
    position: absolute; font-family: "Font Awesome 6 Free"; font-weight: 900;
    content: "\f062"; text-align: center; line-height: 56px; font-size: 18px;
    color: var(--color-red); left: 0; top: 0;
    height: 56px; width: 56px; cursor: pointer; display: block;
    z-index: 1; transition: all 200ms linear;
}
.progress-wrap:hover::after { opacity: 0; }
.progress-wrap::before {
    position: absolute; font-family: "Font Awesome 6 Free"; font-weight: 900;
    content: "\f062"; text-align: center; line-height: 56px; font-size: 18px;
    opacity: 0; color: var(--color-red);
    left: 0; top: 0; height: 56px; width: 56px;
    cursor: pointer; display: block; z-index: 2; transition: all 200ms linear;
}
.progress-wrap:hover::before { opacity: 1; }
.progress-wrap svg path { fill: none; }
.progress-wrap svg.progress-circle path {
    stroke: var(--color-red); stroke-width: 4;
    box-sizing: border-box; transition: all 200ms linear;
}

/* ---- BUTTONS ---- */
.btn-lukmal {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 30px;
    background: var(--color-red);
    color: var(--color-white) !important;
    font-weight: 600; font-size: 15px;
    border-radius: var(--radius);
    border: 2px solid var(--color-red);
    transition: var(--transition); cursor: pointer;
}
.btn-lukmal:hover {
    background: var(--color-red-dark);
    border-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204,27,27,0.38);
}
.btn-lukmal-outline {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 30px;
    background: transparent;
    color: var(--color-white) !important;
    font-weight: 600; font-size: 15px;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.65);
    transition: var(--transition); cursor: pointer;
}
.btn-lukmal-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

/* ---- SECTION LABELS ---- */
.sec-tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--color-red);
    font-size: 13px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    margin-bottom: 12px;
}
.sec-tag::before {
    content: ''; display: block;
    width: 28px; height: 3px;
    background: var(--color-red); border-radius: 2px;
}
.sec-title {
    font-size: clamp(26px, 3.8vw, 40px);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 18px; line-height: 1.2;
}
.sec-desc {
    font-size: 15.5px;
    color: var(--color-text-muted);
    line-height: 1.8;
}
.sec-desc p { color: var(--color-text-muted); }

/* ================================================================
   HEADER – homepage7 (aduMal adapted, red palette)
================================================================ */

/* keyframes */
@keyframes vlfadeInDown {
    0%   { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 1; transform: translateY(0); }
}

.homepage7-body .vl-transparent-header {
    position: absolute; top: 0; left: 0; right: 0; z-index: 99;
}
@media (max-width: 991px) {
    .homepage7-body .vl-transparent-header { background: var(--color-dark); }
}
.homepage7-body .vl-transparent-header::after { display: none; }

/* Logo */
.homepage7-body .vl-transparent-header .vl-logo img {
    height: 70px; object-fit: contain;
}

/* Phone button */
.homepage7-body .vl-transparent-header .vl-hero-btn .btn-area1 a {
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 16px; font-weight: 700;
    text-transform: uppercase;
    display: inline-block; transition: all 0.4s;
    background: var(--color-red);
    padding: 12px 20px 12px 12px;
    border-radius: 80px;
    position: relative; z-index: 1;
}
.homepage7-body .vl-transparent-header .vl-hero-btn .btn-area1 a::after {
    position: absolute; content: "";
    height: 100%; width: 0; left: 50%; top: 0;
    background: var(--color-dark); transition: all 0.4s;
    border-radius: 80px; z-index: -1;
}
.homepage7-body .vl-transparent-header .vl-hero-btn .btn-area1 a:hover { transform: translateY(-5px); }
.homepage7-body .vl-transparent-header .vl-hero-btn .btn-area1 a:hover::after { width: 100%; left: 0; }
.homepage7-body .vl-transparent-header .vl-hero-btn .btn-area1 a span {
    height: 32px; width: 32px; text-align: center; line-height: 32px;
    background: var(--color-white); border-radius: 50%;
    display: inline-block; transition: all 0.4s;
    margin: 0 4px 0 0;
}

/* Top bar */
.homepage7-body .vl-transparent-header .header-top-area {
    background: #000;
    visibility: visible; opacity: 1; transition: all 0.4s; padding: 15px 18px;
}
@media (max-width: 991px) {
    .homepage7-body .vl-transparent-header .header-top-area { display: none; }
}
.homepage7-body .vl-transparent-header .header-top-area .header-main-top {
    display: flex; align-items: center; justify-content: space-between;
}
.homepage7-body .vl-transparent-header .header-top-area .header-main-top .header-list a {
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 15px; font-weight: 500; line-height: 1;
    display: inline-flex; align-items: center; gap: 6px; transition: all 0.4s;
}
.homepage7-body .vl-transparent-header .header-top-area .header-main-top .header-list a svg { margin: 0 4px 0 0; }
.homepage7-body .vl-transparent-header .header-top-area .header-main-top > ul { display: flex; align-items: center; margin: 0; padding: 0; }
.homepage7-body .vl-transparent-header .header-top-area .header-main-top ul li { display: inline-block; margin: 0; }
.homepage7-body .vl-transparent-header .header-top-area .header-main-top ul li a {
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 15px; font-weight: 500; line-height: 1;
    display: inline-flex; align-items: center; gap: 6px; transition: all 0.4s;
}
.homepage7-body .vl-transparent-header .header-top-area .header-main-top ul li a:hover { color: var(--color-red); }
.homepage7-body .vl-transparent-header .header-top-area .header-main-top ul li a svg { margin: 0 4px 0 0; }
.htop-phones {
    display: inline-flex !important; align-items: center; gap: 0; line-height: 1;
}
.htop-phones svg { flex-shrink: 0; margin-right: 6px; }
.htop-sep {
    color: rgba(255,255,255,.3); margin: 0 10px; font-weight: 300; font-size: 16px;
}

/* Main row */
.homepage7-body .vl-transparent-header .row-bg1 {
    padding: 16px; position: relative; z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
    .homepage7-body .vl-transparent-header .row-bg1 { background: none; box-shadow: none; }
}

/* Desktop nav */
.homepage7-body .vl-main-menu ul { text-align: center; margin-bottom: 0px;}
.homepage7-body .vl-main-menu ul > li { display: inline-block; position: relative; }
.homepage7-body .vl-main-menu ul > li > a {
    color: var(--color-white);
    font-family: var(--font-main);
    font-size: 18px; display: inline-block;
    position: relative; transition: 0.4s;
    padding: 0 16px; font-weight: 500;
}
.homepage7-body .vl-main-menu ul > li > a.nav-link.active { color: var(--color-white); opacity: 70%; }
.homepage7-body .vl-main-menu ul > li:hover > a { color: var(--color-red); }
.homepage7-body .vl-main-menu ul > li .sub-menu {
    position: absolute; top: calc(100% + 8px); left: 0;
    min-width: 220px; background: var(--color-dark);
    border-top: 3px solid var(--color-red);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 36px rgba(0,0,0,.5);
    list-style: none; padding: 6px 0; margin: 0;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: all 0.4s; z-index: 200;
}
.homepage7-body .vl-main-menu ul > li:hover .sub-menu { opacity: 1; visibility: visible; transform: none; }
.homepage7-body .vl-main-menu ul > li .sub-menu li a {
    display: block; padding: 11px 22px;
    color: rgba(255,255,255,.7); font-size: 14px; transition: all 0.4s;
}
.homepage7-body .vl-main-menu ul > li .sub-menu li a:hover {
    color: var(--color-white); background: rgba(204,27,27,.18); padding-left: 28px;
}

/* Hamburger */
.homepage7-body .vl-header-action-item { text-align: end; }
.homepage7-body .vl-header-action-item button {
    border: none; background: transparent;
    color: var(--color-white); font-size: 28px; cursor: pointer;
}

/* Sticky header */
.homepage7-body .header-sticky {
    position: fixed; left: 0; right: 0; top: 0;
    animation: 0.7s ease-in-out 0s normal none 1 running vlfadeInDown;
    background-color: rgba(7,7,15,0.95);
}
.homepage7-body .header-sticky::after { display: none !important; }
.homepage7-body .header-sticky .row-bg1 { box-shadow: none; transition: all 0.4s; }
.homepage7-body .header-sticky .row-bg1::after { display: none !important; }
.homepage7-body .header-sticky .header-top-area { display: none; }

/* ================================================================
   MOBILE OFFCANVAS – homepage7 (aduMal adapted)
================================================================ */
.homepage7-body .vl-offcanvas {
    position: fixed; top: 0; left: -360px; width: 330px;
    height: 100%; background: var(--color-dark);
    z-index: 1200; overflow-y: auto;
    transition: all 0.4s;
    padding: 40px 30px;
}
@media (max-width: 767px) {
    .homepage7-body .vl-offcanvas { left: -320px; width: 300px; }
}
.homepage7-body .vl-offcanvas-open { left: 0; }
.homepage7-body .vl-offcanvas-close-toggle {
    border: none; background: transparent;
    color: var(--color-white); font-size: 24px; cursor: pointer;
    transition: all 0.4s;
}
.homepage7-body .vl-offcanvas-close-toggle:hover { color: var(--color-red); }
.homepage7-body .vl-offcanvas-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7); z-index: 1100;
    opacity: 0; visibility: hidden; transition: all 0.4s;
}
.homepage7-body .vl-offcanvas-overlay-open { opacity: 1; visibility: visible; }
.homepage7-body .vl-offcanvas .vl-offcanvas-logo img { height: 50px; object-fit: contain; }
.homepage7-body .vl-offcanvas-menu ul { list-style: none; margin: 0; padding: 0; }
.homepage7-body .vl-offcanvas-menu ul li { padding: 4px 0; }
.homepage7-body .vl-offcanvas-menu ul li a {
    display: flex; align-items: center;
    padding: 12px 0; color: rgba(255,255,255,.8);
    font-family: var(--font-main); font-size: 16px; font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: all 0.4s;
}
.homepage7-body .vl-offcanvas-menu ul li a:hover { color: var(--color-red); padding-left: 6px; }
.homepage7-body .vl-offcanvas-menu ul li.active > a { color: var(--color-red); }
.homepage7-body .vl-offcanvas-menu ul li .sub-menu { display: none; padding-left: 16px; }
.homepage7-body .vl-menu-close {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,.6); float: right; font-size: 14px;
    transition: all 0.4s;
}
.homepage7-body .vl-menu-close i { transition: all 0.4s; }
.homepage7-body .vl-offcanvas-info span { display: block; margin-bottom: 12px; }
.homepage7-body .vl-offcanvas-info span a {
    color: rgba(255,255,255,.75); font-family: var(--font-main);
    font-size: 15px; display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.4s;
}
.homepage7-body .vl-offcanvas-info span a:hover { color: var(--color-red); }
.homepage7-body .vl-offcanvas-info span a i { color: var(--color-red); width: 16px; text-align: center; }
.homepage7-body .vl-offcanvas-sm-title {
    color: var(--color-red); font-family: var(--font-main);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
}

/* ================================================================
   HERO SLIDER
================================================================ */
/* transparent header – no body offset needed */

.hero-wrap { position: relative; background: var(--color-dark); }

.hero-slide {
    position: relative;
    min-height: 600px; height: 86vh; max-height: 820px;
    display: flex !important; align-items: center; overflow: hidden;
}
.hero-slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center center;
    transform: scale(1.05); transition: transform 6.5s ease;
}
.slick-active .hero-slide-bg { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.52) 55%, rgba(0,0,0,.12) 100%);
}
.hero-content {
    position: relative; 
    z-index: 2;
    padding: 300px 0 150px; 
    max-width: 800px;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(204,27,27,.18);
    border-left: 3px solid var(--color-red);
    color: var(--color-red);
    font-size: 12.5px; font-weight: 700;
    letter-spacing: 1.4px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 0 4px 4px 0;
    margin-bottom: 18px;
}
.hero-title {
    font-size: clamp(30px, 5vw, 58px); font-weight: 800;
    color: var(--color-white); margin-bottom: 16px;
    line-height: 1.12; text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero-subtitle {
    color: rgba(255,255,255,.82); font-size: 17px;
    margin-bottom: 34px; line-height: 1.7;
}
.hero-subtitle p { color: rgba(255,255,255,.82); margin-bottom: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider arrows */
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 50px; height: 50px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
    color: var(--color-white); font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
    backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--color-red); border-color: var(--color-red); }
.hero-arrow-prev { left: 28px; }
.hero-arrow-next { right: 28px; }

/* Slider dots */
.hero-wrap .slick-dots {
    position: absolute; bottom: 24px; left: 0; right: 0;
    display: flex !important; justify-content: center; gap: 8px;
    list-style: none; margin: 0; padding: 0; z-index: 10;
}
.hero-wrap .slick-dots li button {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(255,255,255,.35); border: none;
    font-size: 0; cursor: pointer; padding: 0; transition: var(--transition);
}
.hero-wrap .slick-dots li.slick-active button {
    background: var(--color-red); transform: scale(1.35);
}

/* ================================================================
   ABOUT SECTION
================================================================ */
.about-section { padding: 90px 0; background: var(--color-white); }

.about-img-col { position: relative; }
.about-img {
    width: 100%; height: 480px;
    object-fit: cover; border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.about-badge {
    position: absolute; bottom: -22px; right: -18px;
    background: var(--color-red); color: var(--color-white);
    text-align: center; padding: 22px 26px; border-radius: 8px;
    box-shadow: 0 8px 28px rgba(204,27,27,.4);
}
.about-badge .badge-num { font-size: 52px; font-weight: 800; line-height: 1; }
.about-badge .badge-text { font-size: 12.5px; font-weight: 500; opacity: .9; margin-top: 4px; }

.about-text-col { padding-left: 50px; }

.about-areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.area-chip {
    background: var(--color-light); border: 1px solid var(--color-border);
    color: var(--color-text); font-size: 13px; font-weight: 500;
    padding: 6px 16px; border-radius: 30px; transition: var(--transition);
}
.area-chip:hover { background: var(--color-red); border-color: var(--color-red); color: var(--color-white); }

.about-btn-row { margin-top: 32px; }

/* ================================================================
   SERVICES / EQUIPMENT SECTION
================================================================ */
.services-section { padding: 90px 0; background: var(--color-light); }

.service-card {
    background: var(--color-white); border-radius: 8px;
    padding: 38px 28px 32px; text-align: center;
    box-shadow: var(--shadow); transition: var(--transition);
    height: 100%; border-bottom: 3px solid transparent;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    border-bottom-color: var(--color-red);
}
.service-icon {
    width: 74px; height: 74px; margin: 0 auto 22px;
    background: rgba(204,27,27,.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--color-red); transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--color-red); color: var(--color-white); }
.service-card h4 { font-size: 18px; margin-bottom: 12px; }
.service-card p { color: var(--color-text-muted); font-size: 14.5px; line-height: 1.7; margin-bottom: 0; }

.brands-row { margin-top: 44px; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.brands-label { color: var(--color-text-muted); font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.brand-tag {
    background: var(--color-dark); color: var(--color-white);
    font-size: 13.5px; font-weight: 700; padding: 7px 18px; border-radius: 30px;
}

/* ================================================================
   WHY US SECTION
================================================================ */
.why-section {
    padding: 90px 0; background: var(--color-dark);
    position: relative; overflow: hidden;
}
.why-section::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px; background: var(--color-red);
    opacity: .035; border-radius: 50%;
}
.why-section .sec-tag { color: rgba(204,27,27,.9); }
.why-section .sec-tag::before { background: var(--color-red); }
.why-section .sec-title { color: var(--color-white); }
.why-section .sec-desc { color: rgba(255,255,255,.5); }

.why-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.why-item {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 24px 22px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px; transition: var(--transition);
}
.why-item:hover { background: rgba(204,27,27,.1); border-color: rgba(204,27,27,.3); transform: translateY(-3px); }
.why-icon-box {
    width: 46px; height: 46px;
    background: rgba(204,27,27,.15);
    border: 1px solid rgba(204,27,27,.3);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--color-red); flex-shrink: 0;
}
.why-item-body { flex: 1; }
.why-item h4 { color: var(--color-white); font-size: 15.5px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.why-item p { color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 0; line-height: 1.6; }

/* ================================================================
   WARRANTY SECTION
================================================================ */
.warranty-section { padding: 80px 0; background: var(--color-white); }

.warranty-box { text-align: center; padding: 36px 20px; }
.warranty-big { font-size: 76px; font-weight: 800; color: var(--color-red); line-height: 1; margin-bottom: 10px; }
.warranty-big span { font-size: 38px; }
.warranty-box h4 { font-size: 18px; margin-bottom: 10px; }
.warranty-box p { color: var(--color-text-muted); font-size: 14.5px; }
.warranty-divider { width: 1px; background: var(--color-border); margin: 10px 0; }

/* ================================================================
   HOW WE WORK SECTION
================================================================ */
.how-section { padding: 90px 0; background: var(--color-light); }

.step-card {
    position: relative; padding: 32px 28px 28px;
    background: var(--color-white); border-radius: 8px;
    box-shadow: var(--shadow); transition: var(--transition);
    margin-bottom: 30px;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.step-num {
    position: absolute; top: -16px; left: 26px;
    width: 38px; height: 38px; background: var(--color-red);
    color: var(--color-white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px;
    box-shadow: 0 4px 14px rgba(204,27,27,.4);
}
.step-icon { font-size: 26px; color: var(--color-red); margin-bottom: 14px; margin-top: 6px; }
.step-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.step-card p { color: var(--color-text-muted); font-size: 14px; margin-bottom: 0; }

/* ================================================================
   CTA SECTION
================================================================ */
.cta-section {
    padding: 100px 0; background: var(--color-dark-2);
    position: relative; overflow: hidden; text-align: center;
}

.cta-section .sec-desc p{
    color: #ddd;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/115.jpg') center/cover no-repeat;
    opacity: .07;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section .sec-title { color: var(--color-white); }
.cta-section .sec-desc { color: rgba(255,255,255,.6); margin: 0 auto 38px; max-width: 600px; }
.cta-section .sec-tag { color: rgba(204,27,27,.9); justify-content: center; }
.cta-section .sec-tag::before { background: var(--color-red); }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.cta-big-phone {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 30px; background: var(--color-red);
    color: var(--color-white) !important; font-size: 15px; font-weight: 600;
    border-radius: var(--radius); transition: var(--transition);
}
.cta-big-phone:hover {
    background: var(--color-red-dark); transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(204,27,27,.45);
}

/* ================================================================
   FOOTER – vl-footer7 (aduMal adapted, red palette)
================================================================ */
.vl-footer7-section-area {
    position: relative; z-index: 1; overflow: hidden;
    background: #000000; padding: 60px 0 32px;
}

.vl-footer7-section-area .footer-logo-area { position: relative; z-index: 1; }
.vl-footer7-section-area .footer-logo-area img { height: 110px; object-fit: contain; }
.vl-footer7-section-area .footer-logo-area p {
    color: var(--color-white); font-family: var(--font-main);
    font-size: 16px; font-weight: 500; line-height: 26px;
    letter-spacing: -0.32px; opacity: 70%;
}

/* Contact list items (col 2) */
.vl-footer7-section-area .footer-logo-area .contact-logo li { padding-top: 20px; }
.vl-footer7-section-area .footer-logo-area .contact-logo li a {
    color: var(--color-white); font-family: var(--font-main);
    font-size: 16px; font-weight: 500; line-height: 16px;
    display: inline-block; transition: all 0.4s; opacity: 90%;
}
.vl-footer7-section-area .footer-logo-area .contact-logo li a:hover { color: var(--color-red); }
.vl-footer7-section-area .footer-logo-area .contact-logo li a svg {
    margin: 0 5px 0 0; filter: brightness(0) invert(1); opacity: 90%;
}

/* Widget padding – no indent (equal col-4 columns) */

/* Widget headings */
.vl-footer7-section-area .footer-widget-area h3 {
    color: var(--color-white); font-family: var(--font-main);
    font-size: 24px; font-weight: 700; line-height: 24px; margin-bottom: 4px;
}

/* Generic ul links */
.vl-footer7-section-area .footer-widget-area ul li { padding-top: 24px; }
.vl-footer7-section-area .footer-widget-area ul li a {
    color: var(--color-white); font-family: var(--font-main);
    font-size: 16px; font-weight: 500; line-height: 16px;
    display: inline-block; transition: all 0.4s; opacity: 90%;
}
.vl-footer7-section-area .footer-widget-area ul li a:hover { color: var(--color-red); transition: all 0.4s; }
.vl-footer7-section-area .footer-widget-area ul li a svg {
    margin: 0 5px 0 0; filter: brightness(0) invert(1); opacity: 90%;
}

/* foot-padding1 contact links */
.vl-footer7-section-area .footer-widget-area.foot-padding1 ul li { padding-top: 24px; }
.vl-footer7-section-area .footer-widget-area.foot-padding1 ul li a {
    color: var(--color-white); font-family: var(--font-main);
    font-size: 16px; font-weight: 500; line-height: 16px;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all 0.4s; opacity: 90%;
}
.vl-footer7-section-area .footer-widget-area.foot-padding1 ul li a:hover { color: var(--color-red); }
.vl-footer7-section-area .footer-widget-area.foot-padding1 ul li a svg {
    filter: brightness(0) invert(1); opacity: 90%; flex-shrink: 0;
}

/* foot-padding2 firm data */
.vl-footer7-section-area .footer-widget-area.foot-padding2 ul li { padding-top: 22px; }
.vl-footer7-section-area .footer-widget-area.foot-padding2 ul li {
    color: var(--color-white); font-family: var(--font-main);
    font-size: 16px; font-weight: 500; line-height: 1.5;
    transition: all 0.4s; opacity: 90%;
    display: flex; flex-direction: column; gap: 3px;
}
.footer-office-label {
    font-size: 11px; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; color: var(--color-red);
    opacity: 1 !important;
}

/* Copyright bar */
.vl-footer7-section-area .copyright-area {
    display: flex; align-items: center; justify-content: center;
    border-top: 1px solid #192232; padding-top: 24px;
}
@media (max-width: 767px) {
    .vl-footer7-section-area .copyright-area { display: block; text-align: center; }
}
.vl-footer7-section-area .copyright-area a {
    color: var(--color-white); font-family: var(--font-main);
    font-size: 16px; font-weight: 500; line-height: 18px;
    display: inline-block; transition: all 0.4s; opacity: 80%;
}
.vl-footer7-section-area .copyright-area a:hover { color: var(--color-red); opacity: 1; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 991px) {
    .about-text-col { padding-left: 0; margin-top: 48px; }
    .about-img { height: 340px; }
    .about-badge { bottom: -16px; right: 0; }
    .hero-slide { min-height: 520px; height: 72vh; }
    .warranty-divider { display: none; }
}

@media (max-width: 767px) {
    .section-pad { padding: 64px 0; }
    .hero-slide { height: 76vh; min-height: 460px; }
    .hero-title { font-size: 28px; }
    .hero-arrow { display: none!important; }
    .about-img { height: 260px; }
    .about-badge { display: none; }
    .why-items { grid-template-columns: repeat(2, 1fr); }
    .why-item { flex-direction: row; }
    .warranty-divider { display: none; }
}

@media (max-width: 575px) {
    .why-items { grid-template-columns: 1fr; }
    .hero-slide { min-height: 400px; height: 90vh; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-big-phone { font-size: 15px; padding: 13px 24px; }
    .brands-row { flex-direction: column; align-items: flex-start; }
}

/* ---- Bootstrap mb utilities (offcanvas) ---- */
.mb-40 { margin-bottom: 40px !important; }
.mb-90 { margin-bottom: 90px !important; }

/* ============================================================
   PAGE HERO (subheader)
============================================================ */
.page-hero {
    background: var(--color-dark);
    /* topbar ~48px + nav ~102px = ~150px, plus content padding */
    padding: 200px 0 70px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17,17,17,.92) 0%,
        rgba(17,17,17,.78) 60%,
        rgba(17,17,17,.70) 100%
    );
    z-index: 0;
}
.page-hero--cover .page-hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(17,17,17,.88) 0%,
        rgba(17,17,17,.65) 60%,
        rgba(17,17,17,.55) 100%
    );
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--color-white);
    margin-bottom: 12px;
}
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: rgba(255,255,255,.5);
}
.page-hero-breadcrumb a {
    color: rgba(255,255,255,.55);
    transition: var(--transition);
}
.page-hero-breadcrumb a:hover { color: var(--color-red); }
.page-hero-sep { color: rgba(255,255,255,.3); }
.page-hero-breadcrumb span:last-child { color: var(--color-red); }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-section { padding: 80px 0 90px; background: var(--color-white); }

.contact-info-card {
    background: var(--color-dark);
    border-radius: var(--radius);
    padding: 44px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.contact-info-card .sec-tag { color: rgba(204,27,27,.9); }
.contact-info-card .sec-tag::before { background: var(--color-red); }
.contact-info-title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--color-white);
    margin: 8px 0 16px;
}
.contact-info-desc { color: rgba(255,255,255,.55); margin-bottom: 28px; font-size: .95rem; }
.contact-info-desc p { color: rgba(255,255,255,.55); }

.contact-info-list { display: flex; flex-direction: column; gap: 0; padding-top: 8px; }
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.contact-info-list li:last-child{
    border: none;
    padding-bottom: 0px;
}
.contact-info-list li:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.ci-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(204,27,27,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red);
    font-size: 1rem;
    margin-top: 2px;
}
.ci-body { display: flex; flex-direction: column; gap: 2px; }
.ci-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.35); }
.ci-body a, .ci-body span { color: rgba(255,255,255,.85); font-size: .95rem; }
.ci-body a:hover { color: var(--color-red); }

.contact-form-card {
    border-radius: var(--radius);
    padding: 44px 40px;
    height: 100%;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-red);
}
.contact-form-tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--color-red);
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.3px; text-transform: uppercase;
    margin-bottom: 10px;
}
.contact-form-tag::before {
    content: ''; display: block;
    width: 24px; height: 3px;
    background: var(--color-red); border-radius: 2px;
}
.contact-form-title {
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 6px;
    line-height: 1.2;
}
.contact-form-sub {
    color: var(--color-text-muted);
    font-size: .9rem;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 22px;
}

/* Form inputs */
.lk-form-group { margin-bottom: 18px; }
.lk-form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 6px;
    letter-spacing: .02em;
}
.lk-input {
    width: 100%;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    padding: 11px 14px;
    font-size: .95rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    font-family: var(--font-main);
    -webkit-appearance: none;
    appearance: none;
}
.lk-input:focus { border-color: var(--color-red); box-shadow: 0 0 0 3px rgba(204,27,27,.08); }
.lk-input::placeholder { color: #bbb; }
.lk-input.is-invalid { border-color: #dc3545; }
textarea.lk-input { resize: vertical; min-height: 120px; }

.lk-check { display: flex; align-items: flex-start; gap: 10px; }
.lk-check-input {
    width: 17px; height: 17px; min-width: 17px;
    margin-top: 3px;
    accent-color: var(--color-red);
    cursor: pointer;
}
.lk-check-label { font-size: .82rem; color: var(--color-text-muted); line-height: 1.5; cursor: pointer; }
.lk-check-label p { margin: 0; }

@media (max-width: 991px) {
    .contact-info-card, .contact-form-card { padding: 32px 28px; }
}
@media (max-width: 575px) {
    .contact-info-card, .contact-form-card { padding: 24px 20px; }
    .contact-section { padding: 50px 0; }
}

/* ============================================================
   GALLERY PAGE
============================================================ */
.gallery-section { padding: 80px 0 90px; background: var(--color-white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-grid-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-light-2);
}
.gallery-link { display: block; width: 100%; height: 100%; }
.gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
    display: block;
}
.gallery-grid-item:hover .gallery-link img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,17,17,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-grid-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.6rem; color: var(--color-white); }

.gallery-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--color-text-muted);
}
.gallery-empty i { font-size: 4rem; color: var(--color-light-2); display: block; margin-bottom: 16px; }

@media (max-width: 991px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    /* mobile – no topbar, nav ~80px */
    .page-hero { padding: 140px 0 60px; }
}
@media (max-width: 575px) {
    .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
    .gallery-section { padding: 50px 0; }
    .page-hero { padding: 120px 0 50px; }
}

/* ================================================================
   OFFER INDEX PAGE
================================================================ */
.offer-index-section { padding: 90px 0; background: var(--color-white); }

.offer-card {
    background: var(--color-light);
    border-radius: 8px;
    padding: 38px 28px 32px;
    height: 100%;
    border-bottom: 3px solid transparent;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    border-bottom-color: var(--color-red);
}
.offer-card:hover .service-icon { background: var(--color-red); color: var(--color-white); }
.offer-card-title { font-size: 19px; font-weight: 700; margin-bottom: 14px; color: var(--color-dark); }
.offer-card-text { font-size: 14.5px; color: var(--color-text-muted); line-height: 1.75; text-align: left; width: 100%; }
.offer-card-text ul { padding-left: 0; margin: 10px 0 14px; list-style: none; }
.offer-card-text li {
    position: relative;
    padding: 4px 0 4px 18px;
    margin-bottom: 2px;
    color: var(--color-text-muted);
}
.offer-card-text li::before {
    content: '';
    position: absolute;
    left: 0; top: 17px;
    width: 8px; height: 2px;
    background: var(--color-red);
    border-radius: 2px;
}
.offer-card-text p { margin-bottom: 10px; }
.offer-card-text p:last-child { margin-bottom: 0; }

/* ================================================================
   OFFER SPLIT SECTIONS (Kompleksowa obsługa / Obszar działania)
================================================================ */
.offer-split-section { overflow: hidden; }
.offer-split-section--alt .offer-split-content { background: var(--color-white); }

.offer-split-row { min-height: 480px; }

.offer-split-content {
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-light);
}
.offer-split-img-col {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}
.offer-split-img-col img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.offer-split-icon {
    width: 56px; height: 56px;
    background: rgba(204,27,27,.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--color-red);
    margin-bottom: 22px;
}
.offer-split-title {
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
}
.offer-split-text { font-size: 15px; color: var(--color-text-muted); line-height: 1.8; }
.offer-split-text p { color: var(--color-text-muted); }

@media (max-width: 991px) {
    .offer-split-row { min-height: auto; }
    .offer-split-img-col { min-height: 340px; }
    .offer-split-content {
        padding: 52px 40px 56px;
        border-top: 3px solid var(--color-red);
    }
}
@media (max-width: 575px) {
    .offer-split-content { padding: 44px 24px 52px; }
    .offer-split-img-col { min-height: 280px; }
    .offer-split-title { margin-bottom: 20px; }
    .offer-split-icon { margin-bottom: 20px; }
}

.offer-area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.offer-area-cities { font-size: 13.5px; color: var(--color-text-muted); margin: 0; }

@media (max-width: 767px) {
    .offer-index-section { padding: 60px 0; }
}
