:root {
    --accent: #48a38d;
    --header-transparent: rgba(0,0,0,0);
    --header-scrolled: rgba(15, 15, 15, 0.959);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100lvh;
    z-index: -1;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        #4b48489d 5%,
        rgba(36, 35, 35, 0.671) 40%,
        rgba(0, 0, 0, 0.753) 73%,
        rgb(0, 0, 0) 90%
    );
    z-index: 0;
    pointer-events: none;
}
.video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}
.desktop-video {
    display: block;
}
.mobile-video {
    display: none;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 28px 100px;
    z-index: 1000;
    background: var(--header-transparent);
    transition: 0.3s ease;
    animation: slideDown 0.8s ease-out forwards;
}
header.scrolled {
    background: var(--header-scrolled);
    backdrop-filter: blur(5px);
    padding: 18px 100px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 26px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-links a.nav-item {
    cursor: pointer !important;
    display: inline-block;
    padding: 5px 10px;
    transition: color 0.3s ease;
}
.header-phone {
    margin-left: auto;
}
header .nav-links a,
.header-phone span,
.header-phone a {
    font-family: 'Iceland', cursive;
    font-size: 19px;
    letter-spacing: 1.5px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}
header .nav-links a:hover,
.header-phone a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(72, 163, 141, 0.5);
}

.logoobraz {
    width: 48px;
    height: 44px;
}

section { position: relative; width: 100%; }

.hero {
    height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
}
.hero h1 {
    font-family: 'Bruno Ace', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    text-transform: uppercase;
    opacity: 0;
    animation: slideUp 1s ease-out 0.3s forwards;
}
.hero h1 span { color: var(--accent); }
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    z-index: 2;
}
.hero-content h1 {
    margin: 0 0 30px 0;
    padding: 0;
    width: 100%;
}

.branding-bar {
    background: #0d0d0d;
    display: grid;
    grid-template-columns: max-content auto 1fr;
    gap: 40px;
    padding: 36px 10%;
    border-top: 2px solid var(--accent);
    align-items: center;
}
.separator {
    width: 3.5px;
    align-self: stretch;
    background-color: var(--accent);
    border-radius: 2px;
    margin: 0;
}
.brand-title {
    font-family: 'Iceland', cursive;
    font-size: 30px;
    letter-spacing: 1.5px;
    text-align: left;
    justify-self: start;
    padding-left: 20px;
    line-height: 1.2;
}
.brand-title span {
    color: var(--accent);
}
.brand-desc {
    font-family: 'Segoe UI', sans-serif;
    color: rgba(255, 255, 255, 0.82);
    text-align: left;
    line-height: 1.75;
    font-size: 1.05rem;
    font-style: italic;
    padding-left: 18px;
}

.about-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('warsztat1.webp');
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 10%;
    padding-bottom: 70px;
    min-height: 65vh;
}
.about-content {
    text-align: left;
    color: white;
    max-width: 820px;
    margin: 0 auto;
    font-family: 'Rajdhani', sans-serif;
}
.about-content p {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.85;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.2rem;
}
.about-content p:last-child {
    margin-bottom: 0;
}
.about-content p:first-child {
    border-left: 2px solid var(--accent);
    padding-left: 18px;
}

.section-header.about-custom {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    margin-top: 0;
    margin-bottom: 50px;
    padding-right: 0;
}
.section-header.about-custom h3 {
    font-family: 'Iceland', cursive;
    font-size: 2.5rem;
    color: white;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.section-header.about-custom .line {
    height: 2px;
    width: 100%;
    background: linear-gradient(to left,
        var(--accent) 0%,
        var(--accent) 1%,
        transparent 100%
    );
}
.section-header.offer-custom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 50px;
}
.section-header.offer-custom h3 {
    font-family: 'Iceland', cursive;
    font-size: 2.5rem;
    color: white;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    align-items: center;
    margin-left: 100px;
}
.section-header.offer-custom .line {
    height: 2px;
    width: 100%;
    background: linear-gradient(to right,
        var(--accent) 0%,
        var(--accent) 30%,
        transparent 100%);
}

.offer-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('wnetrze_auta.jpg');
    background-size: cover;
    padding: 75px 10%;
}
.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 0 5%;
    padding-top: 10px;
}
.offer-card {
    height: 385px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1); 
    
    z-index: 1;
}
.offer-card:hover {
    transform: translateY(-10px);
}
.offer-card::after {
    content: '';
    position: absolute;
    top: 0;   
    left: 0;
    width: 100%;
    height: 100%; 
    
  
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 2; 
    pointer-events: none; 
}
.offer-card p {
    position: relative;
    z-index: 3;
    font-family: 'Iceland', cursive;
    font-size: 1.4rem;
    color: white;
    width: 100%;
    text-align: center;
}
.card-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 4;
}
.card-info p {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    font-family: 'Bruno Ace', sans-serif;
}
.card-title {
    position: relative;
    z-index: 3;
    font-family: 'Iceland', cursive;
    font-size: 1.4rem;
    margin-bottom: 0;
    transition: opacity 0.3s ease;
}
.offer-card:hover .card-info { opacity: 1; }
.offer-card:hover .card-title { opacity: 0.3; }
.card-img { height: 200px; background: #222; border-radius: 5px; margin-bottom: 15px; }
.card-1 { background-image: url('skrzynia.webp'); }
.card-2 { background-image: url('rozdzielacz.jpg'); }
.card-3 { background-image: url('sterownik.jpg'); }
.card-4 { background-image: url('olej.webp'); }


.dual-text-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px;
    border-top: none !important;
    border-bottom: 2px solid var(--accent);
    padding: 48px 10%;
}
.dual-text-bar .brand-desc {
    text-align: center;
    max-width: 100%;
}
.dual-text-bar .brand-desc p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.branding-bar-bottom {
    border-top: none !important;
    border-bottom: 2px solid var(--accent);
    background: #0d0d0d;
}
.brand-desc {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.catchy-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px; 
    padding: 25px 28px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--accent);
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.catchy-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04); 
    box-shadow: 0 10px 25px rgba(72, 163, 141, 0.15);
}

.catchy-item:last-child {
    margin-bottom: 0;
}


.catchy-number {
    font-family: 'Bruno Ace', sans-serif;
    font-size: 1.4rem; 
    color: var(--accent);
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(72, 163, 141, 0.3);
}


.catchy-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin: 0 !important; 
}

.gallery-section {
    padding: 80px 10%;
    position: relative;
    width: 100%;
    background: transparent !important;
    overflow: hidden;
}
.gallery-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 120%;
    background: radial-gradient(
        ellipse at center,
        rgba(30, 95, 75, 0.7) 0%,
        rgba(30, 95, 75, 0.3) 30%,
        rgba(0, 0, 0, 0) 50%
    );
    z-index: -1;
    pointer-events: none;
}
.slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    margin-top: 80px;
}
.slider-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}
.gallery-item {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                visibility 0.4s ease,
                z-index 0s linear 0.3s;
    border-radius: 15px;
    overflow: hidden;
    will-change: transform, opacity, width, height;
    backface-visibility: hidden;
}
.gallery-item.main {
    opacity: 1;
    visibility: visible;
    width: 40%;
    height: 450px;
    transform: translateX(0);
    filter: brightness(1);
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.gallery-item.side-left {
    opacity: 1;
    visibility: visible;
    width: 25%;
    height: 300px;
    transform: translateX(-120%);
    filter: brightness(0.3);
    z-index: 1;
}
.gallery-item.side-right {
    opacity: 1;
    visibility: visible;
    width: 25%;
    height: 300px;
    transform: translateX(120%);
    filter: brightness(0.3);
    z-index: 1;
}
.gallery-item.hidden-left {
    opacity: 0;
    visibility: hidden;
    width: 25%;
    height: 300px;
    transform: translateX(-250%) scale(0.8);
    z-index: -1;
}
.gallery-item.hidden-right {
    opacity: 0;
    visibility: hidden;
    width: 25%;
    height: 300px;
    transform: translateX(250%) scale(0.8);
    z-index: -1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-btn {
    position: absolute;
    top: 51.5% !important;
    transform: translateY(-50%);
    background: linear-gradient(180deg, #1c4b3f 0%, #3e9e85 100%) !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s ease;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-btn:hover {
    background: linear-gradient(180deg, #2a705e 0%, #4dbf9e 100%) !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(72, 163, 141, 0.5);
}
.nav-btn.prev { 
    left: 15%; 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; }
.nav-btn.next { 
    right: 15%; 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; }
.slider-progress-container {
    width: 60%;
    margin: 40px auto;
}
.slider-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
}
.progress-fill {
    position: absolute;
    width: 8.34%;
    height: 100%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    border-radius: 2px;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    left: 0%;
}
.btn-more {
    display: block;
    margin: 40px auto 20px auto;
    font-family: 'Bruno Ace', sans-serif !important;
    font-size: 1.1rem !important;
    color: white !important;
    text-decoration: none;
    text-align: center;
    background: linear-gradient(180deg, #1c4b3f 0%, #3e9e85 100%) !important;
    border: none !important;
    padding: 10px 30px !important;
    border-radius: 10px !important;
    cursor: pointer;
    transition: 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.btn-more:hover {
    background: linear-gradient(180deg, #2a705e 0%, #4dbf9e 100%) !important;
    box-shadow: 0 6px 20px rgba(72, 163, 141, 0.6);
    transform: translateY(-2px);
}


.contact-section {
    padding: 80px 10%;
}
.contact-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    min-height: 650px;
    align-items: stretch;
}
.contact-form-side {
    background-color: #262626;
    padding: 50px;
    display: flex;
    flex-direction: column;
}
.contact-header {
    font-family: 'Iceland', cursive;
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 40px;
    letter-spacing: 2px;
}
.actual-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}
.actual-form input, .actual-form textarea {
    background: transparent;
    border: 1px solid #4d4d4d;
    border-radius: 8px;
    padding: 15px;
    color: white;
    font-family: 'Segoe UI', sans-serif;
}
.actual-form textarea {
    height: 220px;
    resize: none;
    margin-bottom: 5px;
}
.actual-form label {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
input, textarea {
    width: 100%;
    padding: 12px;
    background: #252525;
    border: 1px solid #333;
    color: white;
    margin-bottom: 5px;
    border-radius: 5px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.btn-contact {
    margin-top: 50px;
    background: linear-gradient(180deg, #1c4b3f 0%, #3e9e85 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: none;
    font-size: 1.3rem;
    font-family: 'Bruno Ace', sans-serif;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    opacity: 0;
    animation: slideUp 1s ease-out 0.6s forwards;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}
.btn-contact:hover {
    background: linear-gradient(180deg, #2a705e 0%, #4dbf9e 100%);
    box-shadow: 0 6px 20px rgba(72, 163, 141, 0.6);
}
.btn-send-new {
    width: 160px;
    padding: 12px;
    background: linear-gradient(135deg, #3e9e85 0%, #1c4b3f 100%);
    border: none;
    border-radius: 5px;
    color: white;
    font-family: 'Bruno Ace', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    align-self: flex-start;
    transition: all 0.3s ease !important;
}
.btn-send-new:hover {
    background: linear-gradient(135deg, #2a705e 0%, #4dbf9e 100%); 
    box-shadow: 0 6px 20px rgba(72, 163, 141, 0.6);
    transform: translateY(-2px);
}
.contact-details-side {
    background: linear-gradient(180deg, #2d6b5b 0%, #16312a 100%);
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.map-wrapper-new {
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}
.info-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.1rem;
}
.info-items .item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}
.info-items .item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}
.info-items .item a:hover {
    color: var(--accent);
}
.icon-square {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-square img {
    width: 24px;
    height: 24px;
}
.social-box { margin-top: 20px; }
.social-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}
.social-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}
.social-icons-row {
    display: flex;
    gap: 15px;
}
.social-square {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.social-square:hover { background: var(--accent); }
.social-square img {
    width: 30px;
    height: 30px;
}

.simple-footer {
    background-color: #080808;
    padding: 30px 10%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.simple-footer p {
    font-family: 'Segoe UI', sans-serif;
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0;
}


.about-section,
.offer-section,
.gallery-section,
.contact-section {
    padding-top: 75px !important;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}


@media (max-width: 768px) {

    .video-overlay {
        background:
            linear-gradient(to bottom,
                transparent 70%,
                rgba(0, 0, 0, 0.8) 90%,
                #000000 100%
            ),
            radial-gradient(
                circle,
                rgba(75, 72, 72, 0.4) 5%,
                rgba(0, 0, 0, 0.6) 70%
            ) !important;
    }
    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
        width: 100vw !important;
        height: 100lvh !important;
        object-fit: cover !important;
        transform: scale(1.2); 
        transform-origin: center center;
    }
    .hero {
        min-height: 80svh;
        padding: 100px 20px;
        height: auto;
    }
    .hero h1 {
        font-size: clamp(1.3rem, 5vw, 1.6rem) !important;
        padding: 0 10px;
    }
    .btn-contact {
        width: 80%;
        font-size: 1.1rem;
        margin-top: 20px;
    }

    header { padding: 15px 5% !important; }
    .nav-links { display: none; }
    .header-phone {
        font-size: 1rem;
        font-family: 'Iceland', cursive;
        padding: 0;
    }
    .header-phone a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        min-height: 44px;
        background: var(--accent);
        border-radius: 22px;
        color: white !important;
        font-size: 1rem;
        white-space: nowrap;
    }
    .header-phone a::before {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        flex-shrink: 0;
    }

    .branding-bar{
        margin-top: -50px !important;
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 20px;
        padding: 40px 10% !important;
    }
    .dual-text-bar {
        padding: 30px 15px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important; 
    }
    .brand-desc {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important; 
    }
    .catchy-item {
        display: flex !important;
        flex-direction: column !important; 
        align-items: flex-start !important;
        gap: 6px !important; 
        margin-bottom: 0 !important;
        padding: 15px 20px !important;
        background: rgba(255, 255, 255, 0.02) !important; 
        border-left: 3px solid var(--accent) !important; 
        border-radius: 4px !important;
    }

   
    .catchy-number {
        font-size: 1.35rem !important;
        text-align: left !important;
        min-width: auto !important;
        line-height: 1.2 !important;
        letter-spacing: 0.5px !important;
    }


    .catchy-text {
        font-size: 0.88rem !important;
        line-height: 1.45 !important;
        color: #b3b3b3 !important; 
    }
    .about-section {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('warsztat1.webp');
        background-position: center !important;
        background-size: cover !important;
    }
    .brand-title {
        text-align: center !important;
        justify-self: center !important;
        padding-left: 0 !important;
        font-size: 22px !important;
        letter-spacing: 1px !important;
    }
    .separator {
        display: none;
    }

    .offer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .offer-card {
        height: 250px !important;
        margin-bottom: 15px;
    }
    .card-info {
        opacity: 1 !important;
        background: rgba(0, 0, 0, 0.35) !important;
        padding: 15px;
    }
    .card-info p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        padding: 10px !important;
    }
    .card-title { display: none !important; }
    
    .contact-box {
        display: flex !important;
        flex-direction: column !important;
    }

    .contact-form-side {
        order: 1 !important; 
        padding: 30px 20px !important;
    }

    .contact-details-side {
        order: 2 !important; 
        padding: 30px 20px !important;
    }
    
    .contact-header {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
        text-align: center;
    }
    .contact-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important;
    }
    .contact-box {
        border-radius: 20px 20px 0 0 !important;
    }
    .form-row { grid-template-columns: 1fr !important; }
    .info-items .item {
        font-size: 0.9rem !important; 
        text-size-adjust: none !important;
        -webkit-text-size-adjust: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
    }

    .info-items .item span, 
    .info-items .item strong,
    .info-items .item a  {
        font-size: 0.9rem !important;
    }

    .icon-square {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important; 
    }
    .map-wrapper-new { height: 250px !important; }
    .nav-btn {
        display: none !important;
    }

    .slider-container {
        min-height: 350px !important;
    }
    .gallery-section {
        padding-top: 0 !important; 
        margin-top: 0 !important;
        padding-left: 3% !important;
        padding-right: 3% !important;
        background: transparent !important;
    }

    .gallery-section .section-header {
        padding-top: 0 !important;
        margin-bottom: 10px !important;
    }
    .gallery-item.main {
        width: 85% !important;
        height: 300px !important;
    }

    .gallery-item.side-left, .gallery-item.side-right {
        width: 60% !important;
        height: 220px !important;
        opacity: 0.4 !important;
    }
    .gallery-section::before {
        height: 100% !important; 
        
        top: 57% !important; 
        
        width: 160% !important; 
        
        left: 50% !important;
        transform: translate(-50%, -50%) !important;

        

    }
.gallery-section .section-header.about-custom h3 {
        margin-top: 30px !important;
    }
    .dots-container {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transition: 0.3s;
    }

    .dot.active {
        background: var(--accent);
        transform: scale(1.3);
        box-shadow: 0 0 10px var(--accent);
    }
    .slider-progress-container {
        display: none !important;
    }
    .section-header.offer-custom {
        align-items: flex-start !important;
        padding-left: 0 !important;
    }

    .section-header.offer-custom h3 {
        margin-left: 20px !important;
        text-align: left !important;
    }

    .section-header.offer-custom .line {
        width: 100% !important;
        background: linear-gradient(to right, var(--accent) 0%, var(--accent) 1%, transparent 100%) !important;
    }

}
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 320px;
    padding: 16px 22px;
    border-radius: 10px;
    background: #1a1a1a;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--accent);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.toast-notification.toast-error {
    border-left-color: #d9534f;
}
@media (max-width: 768px) {
    .toast-notification {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }
}