@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables - LIGHT MODE
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Chakra Petch", "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "Barlow Condensed", "Oswald", sans-serif;
  --nav-font: "Inter", "Poppins", sans-serif;
}

/* Global Colors - LIGHT MODE DOMYŚLNIE */
:root { 
  --background-color: #f7f9fc;
  --default-color: #394757;
  --heading-color: #183152;
  --accent-color: #e52a2c;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors - LIGHT MODE */
:root {
  --nav-color: #183152;
  --nav-hover-color: #e52a2c;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #394757;
  --nav-dropdown-hover-color: #e52a2c;
}

/* Dark mode - można dodać klasę .dark-background do body żeby wrócić do ciemnego */
.dark-background {
  --background-color: #0a0a0a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.05);
  --contrast-color: #ffffff;
  --nav-color: #ffffff;
  --nav-hover-color: #e52a2c;
  --nav-mobile-background-color: #1a1a1a;
  --nav-dropdown-background-color: #1a1a1a;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #e52a2c;
}

/* Light mode explicit */
.light-background {
  --background-color: #f7f9fc;
  --surface-color: #ffffff;
  --default-color: #394757;
  --heading-color: #183152;
  --nav-color: #183152;
  --nav-hover-color: #e52a2c;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #394757;
  --nav-dropdown-hover-color: #e52a2c;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
body {
  background-image: url('../assets/img/remonty-bg.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  background-color: #f7f9fc !important;
}

/* Nakładka dla czytelności tekstu */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 249, 252, 0.88);
  z-index: -1;
  pointer-events: none;
}

/*--------------------------------------------------------------
# GLOBALNE USTAWIENIA - LIGHT MODE
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# HEADER I NAVBAR - POPRAWKA MOBILNA
--------------------------------------------------------------*/

/* Ukrywamy header-top na mobile */
@media (max-width: 991px) {
  .header .header-top {
    display: none !important;
  }
}

/* Główne ustawienia dla mobile */
@media (max-width: 1199px) {
  
  /* Przycisk hamburger */
  .mobile-nav-toggle {
    display: block !important;
    color: #183152 !important;
    font-size: 30px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    padding: 5px 10px !important;
    z-index: 9999 !important;
    position: relative !important;
    order: 3 !important;
  }

  .mobile-nav-toggle:hover {
    color: #e52a2c !important;
  }

  /* Header - układ */
  .header .header-main {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 0 !important;
  }

  .header .logo {
    order: 1 !important;
  }

  .header .logo img {
    max-height: 45px !important;
  }

  .header .btn-cta {
    display: none !important;
  }

  /* Kontener nawigacji */
  .navmenu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    order: 2 !important;
  }

  /* Menu - wysuwane */
  .navmenu ul {
    display: none !important;
    list-style: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    padding: 80px 25px 30px 25px !important;
    margin: 0 !important;
    background: #ffffff !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 9998 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
  }

  .navmenu ul li {
    width: 100% !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    list-style: none !important;
  }

  .navmenu ul li a {
    color: #183152 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    padding: 15px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    word-break: break-word !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    gap: 10px !important;
  }

  .navmenu ul li a:hover,
  .navmenu ul li a.active {
    color: #e52a2c !important;
  }

  .navmenu ul li a i {
    font-size: 14px !important;
    line-height: 1 !important;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #183152 !important;
    flex-shrink: 0 !important;
  }

  .navmenu ul li a i:hover {
    color: #e52a2c !important;
  }

  /* Dropdown w mobile - rozwija się */
  .navmenu .dropdown ul {
    display: none !important;
    position: static !important;
    padding: 8px 0 8px 20px !important;
    margin: 0 !important;
    background: transparent !important;
    border-left: 2px solid rgba(229, 42, 44, 0.2) !important;
    box-shadow: none !important;
    width: 100% !important;
    height: auto !important;
    inset: unset !important;
    overflow-y: visible !important;
  }

  .navmenu .dropdown ul li {
    border-bottom: none !important;
  }

  .navmenu .dropdown ul li a {
    font-size: 15px !important;
    padding: 10px 0 !important;
    color: #4a5568 !important;
  }

  .navmenu .dropdown ul li a:hover {
    color: #e52a2c !important;
  }

  .navmenu .dropdown ul ul {
    padding-left: 16px !important;
    border-left-color: rgba(229, 42, 44, 0.15) !important;
  }

  .navmenu .dropdown .dropdown-active {
    display: block !important;
  }

  /* Aktywne menu - pokazuje się */
  .mobile-nav-active .navmenu ul {
    display: flex !important;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #e52a2c !important;
    position: fixed !important;
    top: 15px !important;
    right: 20px !important;
    z-index: 9999 !important;
    font-size: 32px !important;
  }

  .mobile-nav-active body {
    overflow: hidden !important;
  }
}

/* Poprawka dla bardzo małych ekranów */
@media (max-width: 480px) {
  .header .logo img {
    max-height: 38px !important;
  }
  
  .navmenu ul {
    padding: 70px 18px 20px 18px !important;
  }
  
  .navmenu ul li a {
    font-size: 16px !important;
    padding: 13px 0 !important;
  }
  
  .navmenu .dropdown ul li a {
    font-size: 14px !important;
    padding: 8px 0 !important;
  }
}
/*--------------------------------------------------------------
# GŁÓWNE TŁO STRONY - ZDJĘCIE
--------------------------------------------------------------*/
body, 
body.light-background,
body.dark-background {
  background-image: url('../assets/img/remonty-bg.jpg') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

/* Usuń stary gradient */
body {
  background: none !important;
}

/* Przezroczysta nakładka dla czytelności tekstu */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 249, 252, 0.88);
  z-index: -1;
  pointer-events: none;
}
/* Wszystkie sekcje przezroczyste */
section, .section {
  background: transparent !important;
  position: relative;
  z-index: 1;
}

/* Nagłówki */
h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
}

/* Teksty */
p, .description, .lead, span:not(.badge):not(.principle-num):not(.value-icon) {
  color: rgba(0, 0, 0, 0.7);
}

/* Linki */
a {
  color: var(--accent-color);
  transition: 0.3s;
  text-decoration: none;
}

a:hover {
  color: #c41f1f;
}

/*--------------------------------------------------------------
# STICKY HEADER
--------------------------------------------------------------*/
header#header.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
}

/* Padding pod header */
body {
  padding-top: 140px !important;
}

/* Mniejszy header po scrollu */
header#header.header.scrolled {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Poprawka dla mobile */
@media (max-width: 991px) {
  body {
    padding-top: 120px !important;
  }
}

/*--------------------------------------------------------------
# Navigation Menu - LIGHT MODE
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu>ul>li {
    white-space: nowrap;
    padding: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 12px 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 11px;
    line-height: 0;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  .navmenu>ul>li>a::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
  }
  .navmenu>ul>li>a:hover,
  .navmenu>ul>li>.active,
  .navmenu>ul>li>.active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu>ul>li>a:hover::after,
  .navmenu>ul>li>.active::after,
  .navmenu>ul>li>.active:focus::after {
    opacity: 1;
    transform: scale(1);
  }
  .navmenu>ul>li:hover>a i {
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 20px;
    background: var(--nav-dropdown-background-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: calc(100% + 20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.18);
    min-width: 220px;
    overflow: visible;
  }
  .navmenu .dropdown ul li {
    min-width: 100%;
  }
  .navmenu .dropdown ul a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--nav-dropdown-color);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .navmenu .dropdown ul a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateY(-50%);
  }
  .navmenu .dropdown ul a::after {
    display: none;
  }
  .navmenu .dropdown ul a i {
    font-size: 10px;
  }
  .navmenu .dropdown ul a:hover {
    color: var(--nav-dropdown-hover-color);
    padding-left: 24px;
  }
  .navmenu .dropdown ul a:hover::before {
    width: 12px;
  }
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    padding-left: 24px;
  }
  .navmenu .dropdown ul .active::before,
  .navmenu .dropdown ul .active:hover::before,
  .navmenu .dropdown ul li:hover>a::before {
    width: 12px;
  }
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: -20px;
    left: auto;
    right: calc(100% + 10px);
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: -20px;
    right: calc(100% + 10px);
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .mobile-nav-toggle:hover {
    color: var(--accent-color);
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 0 0 0;
    padding: 30px 24px;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: 0.3s ease;
    z-index: 9998;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 16px 0;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    position: relative;
  }
  .navmenu a::before,
  .navmenu a:focus::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    color: var(--accent-color);
  }
  .navmenu a:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu a:hover::before {
    width: 40px;
  }
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active::before,
  .navmenu .active:focus::before {
    width: 40px;
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    color: var(--accent-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0 10px 20px;
    margin: 0;
    background: transparent;
    border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    inset: unset;
  }
  .navmenu .dropdown ul a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom-color: color-mix(in srgb, var(--default-color), transparent 95%);
  }
  .navmenu .dropdown ul ul {
    padding-left: 16px;
    border-left-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  }
  .navmenu .dropdown>.dropdown-active {
    display: block;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 14px;
    right: 20px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s ease;
  }
  .mobile-nav-active .navmenu>ul {
    display: block;
    max-height: 100vh;
  }
}

/*--------------------------------------------------------------
# Header - LIGHT MODE
--------------------------------------------------------------*/
.header {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 997;
  transition: all 0.4s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header .header-top {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  background: transparent !important;
}

.header .header-top .contact-info {
  color: #183152;
}

.header .header-top .contact-info i {
  color: var(--accent-color);
  margin-right: 6px;
}

.header .header-top .contact-info a,
.header .header-top .contact-info span {
  color: #183152;
}

.header .header-top .contact-info a:hover {
  color: var(--accent-color);
}

.header .header-top .social-links {
  gap: 16px;
}

.header .header-top .social-links a {
  color: #183152;
  font-size: 15px;
}

.header .header-top .social-links a:hover {
  color: var(--accent-color);
}

.header .header-main {
  padding: 18px 0;
  background: transparent !important;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 62px;
  margin-right: 10px;

}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: #183152;
  letter-spacing: -0.5px;
}

.header .btn-cta {
  background-color: var(--accent-color);
  color: #ffffff;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.header .btn-cta:hover {
  background-color: #c41f1f;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .header .header-main .logo { order: 1; }
  .header .header-main .navmenu { order: 3; }
}

@media (max-width: 992px) {
  .header .header-top .social-links {
    width: 100%;
    justify-content: center;
  }
}
/*--------------------------------------------------------------
# Hero Section - WERSJA JASNA
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  background-image: url('../assets/img/remonty-bg2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Nakładka dla czytelności tekstu */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 249, 252, 0.88);
  z-index: 0;
}

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

.hero .hero-block {
  padding: 140px 0 80px;
}

@media (max-width: 992px) {
  .hero .hero-block {
    padding: 120px 0 60px;
    text-align: center;
  }
}

.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 5px 15px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229, 42, 44, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-logo-badge:hover {
  background: rgba(229, 42, 44, 0.1);
  border-color: rgba(229, 42, 44, 0.6);
  transform: scale(1.02);
}

.hero-logo {
  height: 65px;
  width: auto;
  transition: all 0.3s ease;
}

.hero .hero-block .hero-copy h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: #183152;
}

.hero .hero-block .hero-copy p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.75;
  color: #4a5568;
  margin-bottom: 1.75rem;
}

.hero .hero-block .hero-copy .stats-strip {
  display: flex;
  align-items: center;
  background: #ffffff;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
}

.hero .hero-block .hero-copy .stats-strip .s-item {
  flex: 1;
  text-align: center;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip .s-item {
    flex: 0 0 auto;
    min-width: 80px;
  }
}

.hero .hero-block .hero-copy .stats-strip .s-item strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #e52a2c;
  font-family: var(--heading-font);
  line-height: 1.1;
}

.hero .hero-block .hero-copy .stats-strip .s-item span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  font-weight: 500;
  color: #4a5568;
  margin-top: 4px;
}

.hero .hero-block .hero-copy .stats-strip .s-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .stats-strip .s-divider {
    display: none;
  }
}

.hero .hero-block .hero-copy .hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero .hero-block .hero-copy .hero-btns {
    justify-content: center;
  }
}

.hero .hero-block .hero-copy .hero-btns a {
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

@media (max-width: 576px) {
  .hero .hero-block .hero-copy .hero-btns a {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 16px;
  }
}

.hero .hero-block .hero-copy .hero-btns .btn-apply {
  background: #e52a2c;
  border: 1px solid #e52a2c;
  color: #ffffff;
}

.hero .hero-block .hero-copy .hero-btns .btn-apply:hover {
  background: #c41f1f;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229, 42, 44, 0.4);
}

.hero .hero-block .hero-copy .hero-btns .btn-tour {
  background: #ffffff;
  border: 1px solid #dee2e6;
  color: #183152;
}

.hero .hero-block .hero-copy .hero-btns .btn-tour i {
  color: #e52a2c;
  font-size: 1.1rem;
}

.hero .hero-block .hero-copy .hero-btns .btn-tour:hover {
  transform: translateY(-3px);
  background: rgba(229, 42, 44, 0.1);
  border-color: #e52a2c;
  color: #e52a2c;
}

.hero .hero-block .hero-visual {
  position: relative;
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual {
    max-width: 85%;
    margin: 0 auto;
  }
}

.hero .hero-block .hero-visual .campus-photo {
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1200px) {
  .hero .hero-block .hero-visual .campus-photo {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual .campus-photo {
    height: 350px;
  }
}

.hero .hero-block .hero-visual .accred-card {
  position: absolute;
  bottom: 30px;
  left: -25px;
  background: #ffffff;
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid #e52a2c;
  border: 1px solid rgba(229, 42, 44, 0.3);
}

@media (max-width: 992px) {
  .hero .hero-block .hero-visual .accred-card {
    left: 15px;
    bottom: 20px;
  }
}

.hero .hero-block .hero-visual .accred-card i {
  font-size: 2rem;
  color: #e52a2c;
}

.hero .hero-block .hero-visual .accred-card div strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #183152;
  font-family: var(--heading-font);
  line-height: 1.2;
}

.hero .hero-block .hero-visual .accred-card div span {
  font-size: 0.76rem;
  color: #4a5568;
  margin-top: 2px;
}

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(229, 42, 44, 0.2);
}

.page-title::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-title-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 992px) {
  .page-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.page-title .title-block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-title .title-badge {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e52a2c;
  background: rgba(229, 42, 44, 0.1);
  padding: 5px 12px;
  border-radius: 30px;
  letter-spacing: 1px;
  border: 1px solid rgba(229, 42, 44, 0.2);
}

.page-title h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #183152;
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .page-title h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .page-title h1 {
    font-size: 1.5rem;
  }
}

.page-title .title-accent {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e52a2c, transparent);
  border-radius: 3px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 8px 18px;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 40px;
  border: 1px solid rgba(229, 42, 44, 0.2);
  backdrop-filter: blur(5px);
}

.page-title .breadcrumbs ol li {
  display: flex;
  align-items: center;
  color: #4a5568;
}

.page-title .breadcrumbs ol li a {
  color: #4a5568;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
/*--------------------------------------------------------------
# POPRAWKA: Breadcrumbs - ciemny tekst na jasnym tle
--------------------------------------------------------------*/
.usluga-breadcrumb-item a,
.usluga-breadcrumb-item,
.breadcrumb-item-custom a,
.breadcrumb-item-custom,
.page-title .breadcrumbs ol li a,
.page-title .breadcrumbs ol li {
  color: #4a5568 !important;
}

.usluga-breadcrumb-item.active,
.breadcrumb-item-custom.active,
.page-title .breadcrumbs ol li.current {
  color: #e52a2c !important;
}

.usluga-breadcrumb-item a:hover,
.breadcrumb-item-custom a:hover,
.page-title .breadcrumbs ol li a:hover {
  color: #e52a2c !important;
}

.usluga-breadcrumb i,
.breadcrumb-item-custom i,
.page-title .breadcrumbs ol li a i {
  color: #e52a2c !important;
}
.page-title .breadcrumbs ol li a i {
  font-size: 0.9rem;
  color: #e52a2c;
}

.page-title .breadcrumbs ol li a:hover {
  color: #e52a2c;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(229, 42, 44, 0.4);
  font-weight: 300;
}

.page-title .breadcrumbs ol li.current {
  color: #e52a2c;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 20px;
  position: relative;
  color: #183152;
  letter-spacing: -0.5px;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 180px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 70px;
  height: 3px;
  background: #e52a2c;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(229, 42, 44, 0.3);
}

.section-title p {
  margin-bottom: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: #4a5568;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Oferta Section - Z BAJERAMI W TLE
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Sekcja O FIRMIE - Z BAJERAMI W TLE
--------------------------------------------------------------*/
.o-firmie {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.o-firmie::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite;
}

.o-firmie::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 10s ease-in-out infinite reverse;
}

.o-firmie .bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.o-firmie .bg-lines span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 42, 44, 0.1), transparent);
  left: 0;
}

.o-firmie .bg-lines span:nth-child(1) { top: 15%; }
.o-firmie .bg-lines span:nth-child(2) { top: 30%; }
.o-firmie .bg-lines span:nth-child(3) { top: 45%; }
.o-firmie .bg-lines span:nth-child(4) { top: 60%; }
.o-firmie .bg-lines span:nth-child(5) { top: 75%; }
.o-firmie .bg-lines span:nth-child(6) { top: 90%; }

.o-firmie .bg-lines span.vertical {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(229, 42, 44, 0.1), transparent);
  top: 0;
}

.o-firmie .bg-lines span.vertical:nth-child(7) { left: 10%; }
.o-firmie .bg-lines span.vertical:nth-child(8) { left: 30%; }
.o-firmie .bg-lines span.vertical:nth-child(9) { left: 50%; }
.o-firmie .bg-lines span.vertical:nth-child(10) { left: 70%; }
.o-firmie .bg-lines span.vertical:nth-child(11) { left: 90%; }

.o-firmie .sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.o-firmie .sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #e52a2c;
  border-radius: 50%;
  filter: blur(1px);
  animation: sparkleFloat 8s infinite ease-in-out;
  opacity: 0.3;
}

.o-firmie .sparkle::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.2) 0%, transparent 70%);
  left: -8px;
  top: -8px;
  border-radius: 50%;
}

.o-firmie .sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.o-firmie .sparkle:nth-child(2) { top: 70%; left: 20%; animation-delay: 1s; }
.o-firmie .sparkle:nth-child(3) { top: 40%; left: 80%; animation-delay: 2s; }
.o-firmie .sparkle:nth-child(4) { top: 80%; left: 85%; animation-delay: 3s; }
.o-firmie .sparkle:nth-child(5) { top: 15%; left: 95%; animation-delay: 4s; }
.o-firmie .sparkle:nth-child(6) { top: 55%; left: 30%; animation-delay: 5s; }
.o-firmie .sparkle:nth-child(7) { top: 85%; left: 45%; animation-delay: 6s; }
.o-firmie .sparkle:nth-child(8) { top: 25%; left: 65%; animation-delay: 7s; }

.o-firmie .shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.o-firmie .shape.square {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(229, 42, 44, 0.15);
  transform: rotate(15deg);
  animation: rotateSlow 20s linear infinite;
}

.o-firmie .shape.square-1 {
  top: 10%;
  right: 5%;
}

.o-firmie .shape.square-2 {
  bottom: 15%;
  left: 2%;
  width: 120px;
  height: 120px;
  border-color: rgba(229, 42, 44, 0.1);
  animation: rotateSlow 25s linear infinite reverse;
}

.o-firmie .shape.circle {
  width: 150px;
  height: 150px;
  border: 2px dashed rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  animation: rotateSlow 30s linear infinite;
}

.o-firmie .shape.circle-1 {
  bottom: 5%;
  right: 10%;
}

.o-firmie .shape.circle-2 {
  top: 20%;
  left: 15%;
  width: 100px;
  height: 100px;
  border-style: dotted;
  border-color: rgba(229, 42, 44, 0.15);
}

.o-firmie .shape.triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid rgba(229, 42, 44, 0.1);
  opacity: 0.3;
  transform: rotate(10deg);
  animation: floatTriangle 12s ease-in-out infinite;
}

.o-firmie .shape.triangle-1 {
  top: 15%;
  right: 20%;
}

.o-firmie .shape.triangle-2 {
  bottom: 10%;
  left: 25%;
  transform: rotate(45deg);
  animation: floatTriangle 15s ease-in-out infinite reverse;
}

.o-firmie-visual {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
  z-index: 10;
}

.o-firmie-visual .main-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.o-firmie-visual .image-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 60px solid rgba(229, 42, 44, 0.15);
  transform: rotate(45deg);
  z-index: 1;
  pointer-events: none;
}

.o-firmie-visual::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
}

.o-firmie-intro {
  padding-left: 20px;
  position: relative;
  z-index: 10;
}

@media (max-width: 992px) {
  .o-firmie-intro {
    padding-left: 0;
    margin-top: 30px;
  }
}

.o-firmie-intro .badge {
  display: inline-block;
  background: rgba(229, 42, 44, 0.1);
  color: #e52a2c;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  border: 1px solid rgba(229, 42, 44, 0.2);
}

.o-firmie-intro h3 {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 700;
  color: #183152;
  margin-bottom: 15px;
  line-height: 1.2;
}

.o-firmie-intro .lead {
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 10px;
}

.o-firmie-intro .lead strong {
  color: #e52a2c;
}

.o-firmie-intro p {
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Service Cards
--------------------------------------------------------------*/
.services-grid {
  margin: 40px 0;
}

.service-card {
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 16px;
  padding: 30px 25px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: #e52a2c;
  transition: height 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 42, 44, 0.3);
  background: rgba(0, 0, 0, 0.04);
}

.service-card:hover::before {
  height: 100%;
}

.service-card.service-card-featured {
  border: 1px solid rgba(229, 42, 44, 0.3);
  background: rgba(229, 42, 44, 0.03);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}

.service-card:hover .service-icon {
  background: #e52a2c;
}

.service-icon i {
  font-size: 2rem;
  color: #e52a2c;
}

.service-card:hover .service-icon i {
  color: #ffffff;
}

.service-card h4 {
  font-size: clamp(1.1rem, 3vw, 1.2rem);
  font-weight: 700;
  color: #183152;
  margin-bottom: 12px;
}

.service-card p {
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.service-details {
  margin-bottom: 20px;
}

.service-details span {
  display: block;
  font-size: 0.85rem;
  color: #4a5568;
  margin-bottom: 5px;
}

.service-details i {
  color: #e52a2c;
  font-size: 0.8rem;
  margin-right: 5px;
}

.service-link {
  color: #e52a2c;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-link:hover {
  gap: 8px;
  color: #c41f1f;
}

.service-btn {
  background: #e52a2c;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  padding: 8px 15px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
  border: 2px solid #e52a2c;
}

.service-btn:hover {
  background: transparent;
  color: #e52a2c;
  transform: translateY(-2px);
}


/*--------------------------------------------------------------
# Machine Park
--------------------------------------------------------------*/
.machine-park-row {
  margin: 30px 0 40px;
}

.machine-park-box {
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
}

.machine-park-box:hover {
  border-color: rgba(229, 42, 44, 0.3);
  background: rgba(0, 0, 0, 0.04);
}

.machine-icon {
  font-size: 3rem;
  color: #e52a2c;
  opacity: 0.8;
}

.machine-park-box h4 {
  font-size: clamp(1.1rem, 3vw, 1.2rem);
  font-weight: 700;
  color: #183152;
  margin-bottom: 8px;
}

.machine-park-box p {
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0;
}

.machine-badge {
  display: inline-block;
  background: #e52a2c;
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Milestones
--------------------------------------------------------------*/
.milestones-section {
  margin: 40px 0;
  position: relative;
}

.milestones-track {
  position: relative;
  padding: 20px 0;
}

.milestones-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  height: 2px;
  background: linear-gradient(to right, transparent, #e52a2c, transparent);
}

@media (max-width: 992px) {
  .milestones-track::before {
    display: none;
  }
}

.milestone-card {
  text-align: center;
  padding: 30px 15px 20px;
  position: relative;
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.milestone-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 42, 44, 0.3);
  background: rgba(0, 0, 0, 0.04);
}

.milestone-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background-color: #e52a2c;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 2px rgba(229, 42, 44, 0.3);
}

@media (max-width: 992px) {
  .milestone-card::before {
    display: none;
  }
}

.milestone-card .milestone-year {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  font-family: var(--heading-font);
  color: #e52a2c;
  line-height: 1;
  margin-bottom: 10px;
}

.milestone-card h5 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: #183152;
  margin-bottom: 10px;
}

.milestone-card p {
  font-size: clamp(0.85rem, 2.2vw, 0.9rem);
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Key Principles
--------------------------------------------------------------*/
.principles-section {
  margin: 40px 0;
}

.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.principle-item:hover {
  transform: translateX(5px);
  border-color: rgba(229, 42, 44, 0.3);
  background: rgba(0, 0, 0, 0.04);
}

.principle-item .principle-num {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 800;
  font-family: var(--heading-font);
  color: rgba(229, 42, 44, 0.3);
  line-height: 1;
  flex-shrink: 0;
  min-width: 45px;
  transition: color 0.3s ease;
}

.principle-item:hover .principle-num {
  color: #e52a2c;
}

.principle-item .principle-body h4 {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: #183152;
  margin-bottom: 8px;
}

.principle-item .principle-body p {
  font-size: clamp(0.85rem, 2.2vw, 0.9rem);
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values-section {
  margin-top: 20px;
}

.subtitle-small {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e52a2c;
  margin-bottom: 5px;
}

.values-title {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 700;
  color: #183152;
  margin-bottom: 20px;
}

.motto-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin-bottom: 30px;
}

.motto-badge {
  padding: 8px 20px;
  background: rgba(229, 42, 44, 0.1);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 50px;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: 700;
  color: #e52a2c;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.motto-badge:hover {
  background: #e52a2c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(229, 42, 44, 0.3);
}

.value-card {
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 42, 44, 0.3);
  background: rgba(0, 0, 0, 0.04);
}

.value-card .value-icon {
  width: 40px;
  height: 40px;
  background: rgba(229, 42, 44, 0.1);
  color: #e52a2c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 12px;
}

.value-card h4 {
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  font-weight: 700;
  color: #183152;
  margin-bottom: 8px;
}

.value-card p {
  font-size: clamp(0.8rem, 2.2vw, 0.85rem);
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 0;
}

.value-card-highlight {
  border: 1px solid rgba(229, 42, 44, 0.3);
  background: rgba(229, 42, 44, 0.03);
}

/*--------------------------------------------------------------
# Quote Footer
--------------------------------------------------------------*/
.quote-footer {
  margin-top: 40px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 15px;
  border-left: 4px solid #e52a2c;
}

.quote-footer i {
  font-size: 2rem;
  color: #e52a2c;
  opacity: 0.3;
  margin-bottom: 10px;
  display: block;
}

.quote-footer p {
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  line-height: 1.6;
  color: #4a5568;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 15px;
}

.quote-footer .signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.quote-footer .signature span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e52a2c;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 2px solid #e52a2c;
}

.quote-footer .signature i {
  color: #e52a2c;
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Sekcja DLACZEGO MY
--------------------------------------------------------------*/
.dlaczego-my {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.dlaczego-my .dlaczego-visual {
  position: relative;
  height: 100%;
  min-height: 450px;
}

.dlaczego-my .dlaczego-visual .primary-visual {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.dlaczego-my .dlaczego-visual:hover .primary-visual {
  transform: scale(1.02);
}

.dlaczego-my .dlaczego-visual .akcent-shape {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 4px solid #e52a2c;
  border-radius: 30px 80px 30px 80px;
  z-index: -1;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.dlaczego-my .dlaczego-visual .doswiadczenie-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, #e52a2c, #ff4d4f);
  color: #ffffff;
  padding: 25px;
  border-radius: 30px 30px 30px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.dlaczego-my .dlaczego-visual .doswiadczenie-badge .badge-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.dlaczego-my .dlaczego-visual .doswiadczenie-badge .badge-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dlaczego-my .dlaczego-content {
  padding-left: 2rem;
  border-left: 4px solid #e52a2c;
  position: relative;
}

.dlaczego-my .dlaczego-content::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 0;
  width: 4px;
  height: 0;
  background: #e52a2c;
  animation: slideLine 1.5s ease forwards;
}

@keyframes slideLine {
  to { height: 100%; }
}

.dlaczego-my .dlaczego-content .label-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e52a2c;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  padding: 5px 15px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 30px;
}

.dlaczego-my .dlaczego-content .label-tag i {
  font-size: 1.2rem;
}

.dlaczego-my .dlaczego-content h2 {
  font-size: clamp(1.8rem, 5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: #183152;
}

.dlaczego-my .dlaczego-content .description {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
}

.dlaczego-my .atuty-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.dlaczego-my .atuty-row .atut-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.15);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.dlaczego-my .atuty-row .atut-box:hover {
  transform: translateX(10px) scale(1.02);
  border-color: rgba(229, 42, 44, 0.3);
  background: rgba(0, 0, 0, 0.04);
}

.dlaczego-my .atuty-row .atut-box .atut-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #e52a2c, #ff4d4f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(229, 42, 44, 0.3);
}

.dlaczego-my .atuty-row .atut-box .atut-icon i {
  color: #ffffff;
  font-size: 1.5rem;
}

.dlaczego-my .atuty-row .atut-box .atut-text strong {
  color: #183152;
  font-weight: 700;
  font-size: 1.1rem;
}

.dlaczego-my .atuty-row .atut-box .atut-text span {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.4;
}

.dlaczego-my .action-buttons {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.dlaczego-my .action-buttons .btn-poznaj {
  background: linear-gradient(135deg, #e52a2c, #ff4d4f);
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.dlaczego-my .action-buttons .btn-poznaj:hover {
  background: transparent;
  border-color: #e52a2c;
  color: #e52a2c;
  transform: translateY(-3px);
}

.dlaczego-my .action-buttons .btn-kontakt {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #183152;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  transition: all 0.3s ease;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.02);
  border: 2px solid rgba(0, 0, 0, 0.05);
}

.dlaczego-my .action-buttons .btn-kontakt i {
  font-size: 1.3rem;
  color: #e52a2c;
  transition: transform 0.3s ease;
}

.dlaczego-my .action-buttons .btn-kontakt:hover {
  color: #e52a2c;
  background: rgba(229, 42, 44, 0.05);
  border-color: #e52a2c;
  transform: translateY(-2px);
}

.dlaczego-my .action-buttons .btn-kontakt:hover i {
  transform: scale(1.2) rotate(10deg);
}

.dlaczego-my .powody-grid {
  margin-top: 4rem;
  position: relative;
}

.dlaczego-my .powody-grid .powod-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
}

.dlaczego-my .powody-grid .powod-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(229, 42, 44, 0.3);
  background: rgba(0, 0, 0, 0.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.dlaczego-my .powody-grid .powod-card:hover .card-icon-wrapper {
  transform: scale(1.1) rotate(10deg);
  background: #e52a2c;
}

.dlaczego-my .powody-grid .powod-card:hover .card-icon-wrapper i {
  color: #ffffff;
}

.dlaczego-my .powody-grid .powod-card .card-media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.dlaczego-my .powody-grid .powod-card .card-icon-wrapper {
  width: 100px;
  height: 100px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 2px dashed rgba(229, 42, 44, 0.3);
  position: relative;
  z-index: 2;
}

.dlaczego-my .powody-grid .powod-card .card-icon-wrapper i {
  font-size: 3rem;
  color: #e52a2c;
  transition: all 0.4s ease;
}

.dlaczego-my .powody-grid .powod-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.dlaczego-my .powody-grid .powod-card .card-body h5 {
  font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #183152;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.dlaczego-my .powody-grid .powod-card .card-body h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e52a2c, transparent);
  transition: width 0.3s ease;
}

.dlaczego-my .powody-grid .powod-card:hover .card-body h5::after {
  width: 80px;
}

.dlaczego-my .powody-grid .powod-card .card-body p {
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0;
  padding: 0 0.5rem;
}

.dlaczego-my .powody-grid .powod-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(229, 42, 44, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.dlaczego-my .powody-grid .powod-card:hover .card-glow {
  opacity: 1;
}
/*--------------------------------------------------------------
# CTA MEGA - WERSJA JASNA (LIGHT MODE)
--------------------------------------------------------------*/
.cta-mega {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-mega-wrapper {
  background: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 30px;
  padding: 50px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.cta-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #e52a2c;
  border-radius: 50%;
  left: var(--x);
  top: var(--y);
  animation: float-particle 8s infinite ease-in-out;
  animation-delay: var(--delay);
  opacity: 0.2;
}

.particle::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(229,42,44,0.15) 0%, transparent 70%);
  left: -8px;
  top: -8px;
  border-radius: 50%;
}

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
  25% { transform: translate(30px, -20px) scale(1.5); opacity: 0.4; }
  50% { transform: translate(50px, 20px) scale(1); opacity: 0.2; }
  75% { transform: translate(-20px, 30px) scale(1.2); opacity: 0.3; }
}

.cta-mega-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(229, 42, 44, 0.1);
  border: 1px solid rgba(229, 42, 44, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 30px;
  color: #e52a2c;
}

.tag-pulse {
  width: 10px;
  height: 10px;
  background: #e52a2c;
  border-radius: 50%;
  animation: tagPulse 1.5s infinite;
}

@keyframes tagPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.cta-mega-title {
  margin-bottom: 20px;
}

.title-line {
  display: block;
  font-size: 1.2rem;
  color: #4a5568;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.title-gradient {
  display: block;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #183152 0%, #e52a2c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-mega-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #4a5568;
  margin-bottom: 30px;
  max-width: 90%;
}

.text-highlight {
  color: #e52a2c;
  font-weight: 700;
}

.text-glow {
  display: inline-block;
  animation: textGlow 2s infinite;
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 5px rgba(229, 42, 44, 0.2); }
  50% { text-shadow: 0 0 15px rgba(229, 42, 44, 0.4); }
}

.cta-stats {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
  color: #e52a2c;
  background: none;
  -webkit-text-fill-color: #e52a2c;
}

.stat-label {
  font-size: 0.9rem;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 2px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(15deg);
}

.cta-mega-actions {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(229, 42, 44, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-mega-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #e52a2c, #c41f1f);
  color: white;
  text-decoration: none;
  padding: 20px 30px;
  border-radius: 15px;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 30px rgba(229, 42, 44, 0.2);
}

.btn-mega-primary .btn-text,
.btn-mega-primary .btn-icon i {
  color: white !important;
}

.btn-mega-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn-mega-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(229, 42, 44, 0.3);
  background: linear-gradient(135deg, #c41f1f, #a01818);
}

.btn-mega-primary:hover::before {
  left: 100%;
}

.btn-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-mega-primary:hover .btn-glow {
  opacity: 1;
}

.cta-secondary-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-mega-phone, .btn-mega-chat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(229, 42, 44, 0.3);
  color: #183152;
  background: #ffffff;
}

.btn-mega-phone i,
.btn-mega-phone span,
.btn-mega-chat i,
.btn-mega-chat span {
  color: #183152;
}

.btn-mega-phone:hover {
  background: #e52a2c;
  border-color: #e52a2c;
  transform: scale(1.02);
}

.btn-mega-phone:hover i,
.btn-mega-phone:hover span {
  color: #ffffff;
}

.btn-mega-chat:hover {
  background: #e52a2c;
  border-color: #e52a2c;
  transform: scale(1.02);
}

.btn-mega-chat:hover i,
.btn-mega-chat:hover span {
  color: #ffffff;
}

.chat-dot {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.cta-deadline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6c757d;
  font-size: 0.85rem;
}

.cta-deadline i {
  color: #e52a2c;
  animation: hourglass 2s infinite;
}

@keyframes hourglass {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.cta-trust-bar {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a5568;
  font-size: 0.9rem;
}

.trust-item i {
  color: #e52a2c;
  font-size: 1.2rem;
  animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Responsywność dla CTA */
@media (max-width: 991px) {
  .cta-mega-wrapper {
    padding: 30px;
  }
  .title-gradient {
    font-size: 2rem;
  }
  .cta-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .cta-trust-bar {
    flex-wrap: wrap;
    gap: 20px;
  }
  .cta-mega-text {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .cta-secondary-actions {
    flex-direction: column;
  }
  .cta-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  .stat-divider {
    display: none;
  }
}
/*--------------------------------------------------------------
# Sekcja ŚLEDŹ NAS
--------------------------------------------------------------*/
.sledz-nas {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.sledz-nas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(229, 42, 44, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(229, 42, 44, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.sledz-nas .container {
  position: relative;
  z-index: 2;
}

.sledz-nas .social-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 100%;
}

.sledz-nas .social-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(229, 42, 44, 0.3);
}

.sledz-nas .social-facebook:hover {
  background: rgba(24, 119, 242, 0.05);
}

.sledz-nas .social-instagram:hover {
  background: rgba(225, 48, 108, 0.05);
}

.sledz-nas .social-linkedin:hover {
  background: rgba(10, 102, 194, 0.05);
}

.sledz-nas .social-youtube:hover {
  background: rgba(255, 0, 0, 0.05);
}

.sledz-nas .social-card:hover .social-icon-wrapper {
  background: rgba(229, 42, 44, 0.2);
  transform: scale(1.1) rotate(360deg);
}

.sledz-nas .social-card:hover .social-icon-wrapper i {
  color: #e52a2c;
}

.sledz-nas .social-card:hover .social-content h3,
.sledz-nas .social-card:hover .social-content p {
  color: #183152;
}

.sledz-nas .social-card:hover .social-link {
  background: #e52a2c;
  color: #ffffff;
}

.sledz-nas .social-icon-wrapper {
  width: 100px;
  height: 100px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.5s ease;
  border: 2px dashed rgba(229, 42, 44, 0.3);
}

.sledz-nas .social-icon-wrapper i {
  font-size: 3.5rem;
  color: #e52a2c;
}

.sledz-nas .social-content h3 {
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #183152;
  transition: color 0.3s ease;
}

.sledz-nas .social-content p {
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  transition: color 0.3s ease;
}

.sledz-nas .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  font-weight: 600;
  color: #e52a2c;
  transition: all 0.3s ease;
  padding: 5px 15px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 50px;
}

.sledz-nas .social-link i {
  transition: transform 0.3s ease;
}

.sledz-nas .social-card:hover .social-link i {
  transform: translateX(5px);
}

.sledz-nas .social-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.sledz-nas .social-card:hover .social-glow {
  opacity: 0.5;
}

.sledz-nas .social-bottom-text {
  margin-top: 3rem;
  padding: 1rem;
}

.sledz-nas .social-bottom-text p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: #183152;
  background: rgba(0, 0, 0, 0.02);
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid rgba(229, 42, 44, 0.2);
  backdrop-filter: blur(10px);
}

.sledz-nas .social-bottom-text i {
  animation: pulse 2s ease-in-out infinite;
}
/*--------------------------------------------------------------
# CTA WYJŚCIE - WERSJA JASNA (LIGHT MODE)
--------------------------------------------------------------*/
.cta-wyjscie {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-wyjscie .cta-low-bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 280px;
  background-image: url('../img/cta-intech.jpg');
  background-size: cover;
  background-position: center;
  transform: translateY(-50%);
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #e52a2c;     /* CZERWONY BORDER NA GÓRZE */
  border-bottom: 3px solid #e52a2c;  /* CZERWONY BORDER NA DOLE */
}

.cta-wyjscie .cta-low-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  z-index: 2;
  pointer-events: none;
}

.cta-wyjscie-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  z-index: 10;
  min-height: 500px;
  width: 100%;
}

@media (max-width: 992px) {
  .cta-wyjscie-wrapper {
    flex-direction: column;
    gap: 40px;
    min-height: auto;
  }
}

.cta-wyjscie-content {
  flex: 1;
  max-width: 500px;
  position: relative;
  z-index: 15;
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(229, 42, 44, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
  .cta-wyjscie-content {
    max-width: 100%;
    text-align: center;
  }
}

.cta-wyjscie-content .cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 42, 44, 0.1);
  color: #e52a2c;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(229, 42, 44, 0.3);
}

.cta-wyjscie-content .cta-tag i {
  font-size: 1rem;
  color: #e52a2c;
}

.cta-wyjscie-content .cta-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #183152;
}

.cta-wyjscie-content .cta-title .accent {
  color: #e52a2c;
  position: relative;
  display: inline-block;
}

.cta-wyjscie-content .cta-text {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 30px;
}

.cta-wyjscie-content .cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .cta-wyjscie-content .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .cta-wyjscie-content .cta-buttons {
    flex-direction: column;
  }
  .cta-wyjscie-content .btn-wyjscie-primary,
  .cta-wyjscie-content .btn-wyjscie-secondary {
    width: 100%;
    justify-content: center;
  }
}

.cta-wyjscie-content .btn-wyjscie-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e52a2c;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #e52a2c;
  box-shadow: 0 5px 15px rgba(229, 42, 44, 0.2);
}

.cta-wyjscie-content .btn-wyjscie-primary i {
  transition: transform 0.3s ease;
}

.cta-wyjscie-content .btn-wyjscie-primary:hover {
  background: #c41f1f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(229, 42, 44, 0.3);
}

.cta-wyjscie-content .btn-wyjscie-primary:hover i {
  transform: translateX(5px);
}

.cta-wyjscie-content .btn-wyjscie-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  color: #183152;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
}

.cta-wyjscie-content .btn-wyjscie-secondary i {
  color: #e52a2c;
  transition: all 0.3s ease;
}

.cta-wyjscie-content .btn-wyjscie-secondary:hover {
  border-color: #e52a2c;
  background: rgba(229, 42, 44, 0.05);
  transform: translateY(-3px);
  color: #e52a2c;
}

.cta-wyjscie-content .btn-wyjscie-secondary:hover i {
  transform: scale(1.1);
  color: #e52a2c;
}

/* Zdjęcia po prawej */
.cta-wyjscie-grid {
  flex: 1;
  max-width: 650px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  height: 500px;
  z-index: 20;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .cta-wyjscie-grid {
    max-width: 100%;
    height: 350px;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .cta-wyjscie-grid {
    height: 280px;
    gap: 10px;
  }
}

.wyjscie-item {
  position: relative;
  width: 200px;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: 2px solid rgba(229, 42, 44, 0.2);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .wyjscie-item {
    width: 140px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .wyjscie-item {
    width: 110px;
    height: 170px;
  }
}

.wyjscie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.item-left {
  transform: translateY(-10px) translateX(-10px);
  z-index: 3;
}

.item-center {
  width: 240px;
  height: 360px;
  transform: translateY(-10px) translateX(0);
  z-index: 5;
  border: 3px solid #e52a2c;
  box-shadow: 0 25px 50px rgba(229, 42, 44, 0.2);
}

@media (max-width: 992px) {
  .item-center {
    width: 160px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .item-center {
    width: 130px;
    height: 200px;
  }
}

.item-right {
  transform: translateY(-10px) translateX(10px);
  z-index: 3;
}

.wyjscie-item:hover {
  transform: scale(1.08) translateY(-15px) translateX(0);
  z-index: 10;
  border-color: #e52a2c;
  box-shadow: 0 30px 60px rgba(229, 42, 44, 0.3);
}

.wyjscie-item:hover img {
  transform: scale(1.1);
}

.wyjscie-item:hover .wyjscie-overlay {
  opacity: 1;
}

.item-center:hover {
  transform: scale(1.08) translateY(-15px) translateX(0);
  border-color: #e52a2c;
  box-shadow: 0 35px 70px rgba(229, 42, 44, 0.35);
}

.wyjscie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(229, 42, 44, 0.95), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wyjscie-item:hover .wyjscie-overlay {
  opacity: 1;
}

.wyjscie-overlay span {
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 15px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.wyjscie-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(229, 42, 44, 0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.wyjscie-item:hover .wyjscie-glow {
  opacity: 1;
}

/* Responsywność */
@media (max-width: 576px) {
  .cta-wyjscie {
    padding: 50px 0;
  }
  .cta-wyjscie-content {
    padding: 25px;
  }
  .cta-wyjscie-grid {
    height: 220px;
    gap: 8px;
  }
  .wyjscie-item {
    width: 90px;
    height: 140px;
  }
  .item-center {
    width: 110px;
    height: 170px;
  }
}/*--------------------------------------------------------------
# FOOTER - LIGHT MODE Z WIDOCZNYM TŁEM
--------------------------------------------------------------*/
.footer-simple {
  position: relative;
  color: #183152;
  padding: 60px 0 30px;
  overflow: hidden;
  background: #f1f3f5;
}

/* Tło z obrazkiem - WIĘCEJ KRYCIA */
.footer-simple .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/remonty-bg2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.65; 
}

/* Dodatkowa nakładka dla czytelności tekstu */
.footer-simple .footer-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.footer-simple .container {
  position: relative;
  z-index: 10;
}

.footer-simple .footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-simple .footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-simple .footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(0);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-simple .footer-logo:hover {
  opacity: 1;
}

.footer-simple .company-name {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.4;
  color: #4a5568;
}

.footer-simple .company-name strong {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: #183152;
  font-weight: 700;
}

.footer-simple .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .footer-simple .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .footer-simple .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-simple .footer-section {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.footer-simple .footer-section:hover {
  border-color: rgba(229, 42, 44, 0.3);
  background: #ffffff;
  transform: translateY(-3px);
}

.footer-simple .footer-title {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: #e52a2c;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(229, 42, 44, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-simple .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-simple .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-simple .contact-item i {
  color: #e52a2c;
  font-size: 1.2rem;
  margin-top: 2px;
  min-width: 20px;
}

.footer-simple .contact-item a {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
  display: inline-block;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
}

.footer-simple .contact-item a:hover {
  color: #e52a2c;
}

.footer-simple .footer-address {
  display: flex;
  gap: 12px;
}

.footer-simple .footer-address i {
  color: #e52a2c;
  font-size: 1.2rem;
  margin-top: 2px;
  min-width: 20px;
}

.footer-simple .footer-address div {
  color: #4a5568;
  line-height: 1.6;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
}

.footer-simple .footer-data {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-simple .footer-data div {
  color: #4a5568;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
}

.footer-simple .footer-data strong {
  color: #e52a2c;
  font-weight: 600;
  margin-right: 5px;
}

.footer-simple .footer-social-simple {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-simple .social-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(229, 42, 44, 0.2);
  border-radius: 8px;
  color: #183152;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-simple .social-simple:hover {
  background: #e52a2c;
  border-color: #e52a2c;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(229, 42, 44, 0.3);
}

.footer-simple .footer-links-simple {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin: 30px 0 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-simple .footer-links-simple a {
  color: #4a5568;
  text-decoration: none;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  transition: color 0.3s ease;
  padding: 0 5px;
}

.footer-simple .footer-links-simple a:hover {
  color: #e52a2c;
}

.footer-simple .footer-links-simple .sep {
  color: rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
}

.footer-simple .footer-bottom-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  color: #4a5568;
  font-size: clamp(0.85rem, 2.2vw, 0.95rem);
}

@media (max-width: 768px) {
  .footer-simple .footer-bottom-simple {
    flex-direction: column;
    text-align: center;
  }
}

.footer-simple .copyright strong {
  color: #e52a2c;
  font-weight: 600;
}

.footer-simple .created-by-simple a {
  color: #e52a2c;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.footer-simple .created-by-simple a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #e52a2c;
  transition: width 0.3s ease;
}

.footer-simple .created-by-simple a:hover {
  color: #c41f1f;
}

.footer-simple .created-by-simple a:hover::after {
  width: 100%;
}

#current-year {
  color: #e52a2c;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #f7f9fc;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: #e52a2c transparent #e52a2c transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #e52a2c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #c41f1f;
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# PHP Email Form Messages
--------------------------------------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #e52a2c;
  border-top-color: transparent;
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Service page - LIGHT MODE
--------------------------------------------------------------*/
.service-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #f7f9fc 0%, #e9ecef 100%);
  color: #183152;
  position: relative;
  border-bottom: 1px solid rgba(229, 42, 44, 0.3);
}

.service-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 15px 0 15px;
  background: linear-gradient(135deg, #183152 0%, #e52a2c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-hero-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  color: #4a5568;
  line-height: 1.6;
}

.service-main {
  padding: 60px 0;
  background: transparent;
}

/*--------------------------------------------------------------
# USŁUGA - Remonty młynów (styl dla podstron) - LIGHT MODE
--------------------------------------------------------------*/
.usluga-main {
  padding: 60px 0;
  background: transparent;
}

.main-service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.inner-manufacturers-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 20px 25px;
  margin-top: 25px;
}

.gear-icon-corner {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 2.5rem;
  color: rgba(229, 42, 44, 0.2);
  z-index: 1;
}

.main-service-card-content {
  position: relative;
  z-index: 2;
  padding-top: 10px;
}

.red-dot-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0 0;
}
.red-dot-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  color: #4a5568;
}
.red-dot-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e52a2c;
  font-size: 1.2rem;
  font-weight: bold;
}

.arrow-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}
.arrow-list li {
  margin-bottom: 0.6rem;
  padding-left: 1.5rem;
  position: relative;
  color: #4a5568;
}
.arrow-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #e52a2c;
  font-weight: bold;
}

.benefits-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px 0;
}
.benefit-item-simple {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 15px 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.benefit-item-simple:last-child {
  border-right: none;
}
.benefit-item-simple .benefit-icon-simple {
  font-size: 3rem !important;
  color: #e52a2c;
  margin-bottom: 12px;
  display: block;
}
.benefit-item-simple .benefit-text-simple {
  color: #183152;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.industry-grid-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.industry-icon-card {
  background: rgba(229, 42, 44, 0.05);
  border-radius: 20px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.industry-icon-card:hover {
  transform: translateY(-5px);
  background: rgba(229, 42, 44, 0.15);
}
.industry-icon-card i {
  font-size: 2rem;
  color: #e52a2c;
  margin-bottom: 12px;
  display: block;
}
.industry-icon-card p {
  color: #183152;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.right-features-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.feature-list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.feature-list-item:last-child {
  border-bottom: none;
}
.feature-icon-small {
  width: 50px;
  height: 50px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon-small i {
  font-size: 1.5rem;
  color: #e52a2c;
}
.feature-text {
  color: #183152;
  font-size: 1rem;
  line-height: 1.4;
}

.section-title-white {
  font-size: 1.8rem;
  font-weight: 700;
  color: #183152;
  margin-bottom: 0.5rem;
}
.section-title-red-line {
  font-size: 1.5rem;
  font-weight: 600;
  color: #183152;
  margin-bottom: 0.5rem;
}
.short-red-line {
  width: 60px;
  height: 3px;
  background: #e52a2c;
  margin: 15px 0 20px 0;
  border-radius: 3px;
}

.service-image {
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 650px;
}

.map-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 25px 30px;
  margin-top: 40px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.map-footer i {
  font-size: 2.5rem;
  color: #e52a2c;
}
.map-footer p {
  color: #4a5568;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}


/*--------------------------------------------------------------
# POPRAWKA: Hero - czarne/ciemne napisy (bez gradientów)
--------------------------------------------------------------*/

/* Nagłówek H1 - czysty ciemny kolor */
.hero-full h1,
.usluga-hero .usluga-hero-title,
.service-hero .service-hero-title {
  color: #183152 !important;
  background: none !important;
  -webkit-text-fill-color: #183152 !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  text-shadow: none !important;
}

/* Opis - ciemny szary */
.hero-full p,
.usluga-hero .usluga-hero-subtitle,
.service-hero .service-hero-subtitle {
  color: #4a5568 !important;
  background: none !important;
  text-shadow: none !important;
}

/* Breadcrumbs */
.hero-full .usluga-breadcrumb-item a,
.usluga-breadcrumb-nav .usluga-breadcrumb-item a {
  color: #6c757d !important;
  background: none !important;
}

.hero-full .usluga-breadcrumb-item.active,
.usluga-breadcrumb-nav .usluga-breadcrumb-item.active {
  color: #e52a2c !important;
}

.hero-full .usluga-breadcrumb-item a:hover {
  color: #e52a2c !important;
}

/* Krótka czerwona linia - bez zmian */
.hero-full .short-red-line {
  background: #e52a2c !important;
}

/* Wszelkie inne elementy w hero */
.hero-full .hero-container,
.hero-full .container {
  color: inherit;
}

/* Dla pewności - blokada wszystkich gradientów w hero */
.hero-full h1,
.hero-full h2,
.hero-full h3,
.hero-full .title-gradient {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #183152 !important;
  color: #183152 !important;
  text-shadow: none !important;
}
/*--------------------------------------------------------------
# POPRAWKA: Nagłówek "Dlaczego warto wybrać Intech Energo"
--------------------------------------------------------------*/

/* Główny nagłówek */
.section-title-b,
h3.section-title-b {
  color: #183152 !important;
  background: none !important;
  -webkit-text-fill-color: #183152 !important;
  text-shadow: none !important;
}

/* Opis pod nagłówkiem */
.section-title-b + .short-red-line + p,
.section-title-b ~ p {
  color: #4a5568 !important;
  background: none !important;
}

/* Dla pewności - wszystkie elementy w tej sekcji */
.benefits-row + .row h3,
.benefits-row ~ .row h3,
.row .section-title-b {
  color: #183152 !important;
}

.benefits-row + .row p,
.benefits-row ~ .row p {
  color: #4a5568 !important;
}

/*--------------------------------------------------------------
# Cookies Banner - LIGHT MODE
--------------------------------------------------------------*/
.cookie-consent-v2 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid #e52a2c;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-family: 'Poppins', 'Roboto', sans-serif;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.cookie-consent-v2.show {
    transform: translateY(0);
}

.cookie-container-v2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 30px;
}

.cookie-text-v2 p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.cookie-text-v2 a {
    color: #e52a2c;
    text-decoration: none;
    font-weight: 500;
}

.cookie-btn-accept-v2 {
    background: #e52a2c;
    color: white;
}

.cookie-btn-accept-v2:hover {
    background: #c41f1f;
}

.cookie-btn-settings-v2 {
    background: transparent;
    border: 1px solid #e52a2c;
    color: #e52a2c;
}

.cookie-btn-decline-v2 {
    background: transparent;
    border: 1px solid #ccc;
    color: #666;
}

.cookie-modal-content-v2 {
    background: #ffffff;
    border: 1px solid rgba(229, 42, 44, 0.3);
    border-radius: 24px;
}

.cookie-modal-header-v2 h3 {
    color: #e52a2c;
}

.cookie-option-v2 {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(229, 42, 44, 0.1);
}

.cookie-option-info-v2 h4 {
    color: #183152;
}

.cookie-option-info-v2 p {
    color: #666;
}

.cookie-toggle-v2 {
    background: #ccc;
}

.cookie-toggle-v2.active {
    background: #e52a2c;
}

.cookie-modal-btn-save-v2 {
    background: #e52a2c;
    color: white;
}

/*--------------------------------------------------------------
# Responsywność
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .cta-mega-wrapper {
    padding: 30px;
  }
  .title-gradient {
    font-size: 2.5rem;
  }
  .cta-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .cta-trust-bar {
    flex-wrap: wrap;
    gap: 20px;
  }
  .cta-mega-text {
    max-width: 100%;
  }
  .service-hero-title {
    font-size: 2.5rem;
  }
  .certyfikaty-title {
    font-size: 1.8rem;
  }
  .kariera-title {
    font-size: 1.8rem;
  }
  .produkty-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .cta-secondary-actions {
    flex-direction: column;
  }
  .cta-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  .stat-divider {
    display: none;
  }
  .service-hero-title {
    font-size: 2rem;
  }
  .service-hero-subtitle {
    font-size: 1rem;
  }
  .hero-full h1 {
    font-size: 2rem;
  }
  .hero-full p {
    font-size: 1rem;
  }
  .certyfikaty-title {
    font-size: 1.5rem;
  }
  .kariera-title {
    font-size: 1.5rem;
  }
  .produkty-title {
    font-size: 2rem;
  }
  .benefits-row {
    flex-direction: column;
  }
  .benefit-item-simple {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .benefit-item-simple:last-child {
    border-bottom: none;
  }
  .service-image {
    min-height: 350px;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Dropdown menu w navbarze - LIGHT MODE
--------------------------------------------------------------*/
.navmenu .dropdown ul {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(229, 42, 44, 0.2) !important;
  border-radius: 15px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.navmenu .dropdown ul a {
  color: #183152 !important;
  background: transparent !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul a:focus {
  color: #e52a2c !important;
  background: rgba(229, 42, 44, 0.05) !important;
}/*--------------------------------------------------------------
# OFERTA SECTION - JASNE KAFELKI ZE ZDJĘCIAMI W TLE
--------------------------------------------------------------*/
.oferta {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.oferta::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 8s ease-in-out infinite;
}

.oferta::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(229, 42, 44, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 10s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

.oferta .features-block {
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}

/* KAFELKI - ZDJĘCIE W TLE JEST WIDOCZNE */
.oferta .feat-card {
  display: block;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: none;
  transition: all 0.35s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  z-index: 20;
}

/* LEKKA CIEMNA NAKŁADKA - ZDJĘCIE WIDOCZNE ALE TEKST CZYTELNY */
.oferta .feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  transition: all 0.4s ease;
}

.oferta .feat-card:hover::before {
  background: rgba(229, 42, 44, 0.7);
}

/* CZERWONY PASEK NA DOLE */
.oferta .feat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #e52a2c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 2;
}

.oferta .feat-card:hover::after {
  transform: scaleX(1);
}

.oferta .feat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* IKONA */
.oferta .feat-card .feat-icon {
  width: 65px;
  height: 65px;
  background: rgba(229, 42, 44, 0.85);
  color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.35s ease;
  position: relative;
  z-index: 10;
}

.oferta .feat-card:hover .feat-icon {
  background: #e52a2c;
  transform: scale(1.05);
}

/* TYTUŁ - BIAŁY (bo tło jest ciemne) */
.oferta .feat-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
  position: relative;
  z-index: 10;
}

/* OPIS - BIAŁY */
.oferta .feat-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 10;
}

.oferta .feat-card p strong {
  color: #ffffff;
  font-weight: 700;
}

/* LINK PRZYCISK */
.oferta .feat-card .feat-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 42, 44, 0.8);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  z-index: 10;
}

.oferta .feat-card .feat-link i {
  transition: transform 0.3s ease;
}

.oferta .feat-card .feat-link:hover {
  background: #e52a2c;
  color: #ffffff;
}

.oferta .feat-card .feat-link:hover i {
  transform: translateX(5px);
}

.feat-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# URZĄDZENIA TOWARZYSZĄCE - JASNA WERSJA
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# URZĄDZENIA TOWARZYSZĄCE - JASNA WERSJA
--------------------------------------------------------------*/
.urzadzenia-wrapper {
  margin-top: 60px;
}

.urzadzenia-main-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #ffffff;
  border: 1px solid #e9ecef;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.urzadzenia-main-card-inner {
  position: relative;
  z-index: 10;
  padding: 45px;
}

@media (max-width: 768px) {
  .urzadzenia-main-card-inner {
    padding: 30px 25px;
  }
}

.urzadzenia-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e52a2c, #ff6b6b, #e52a2c);
  background-size: 200% 100%;
  animation: urzadzeniaGradient 3s ease infinite;
  z-index: 15;
  border-radius: 30px 30px 0 0;
}

@keyframes urzadzeniaGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* TYTUŁ - CIEMNY */
.urzadzenia-main-title {
  font-size: 2rem;
  font-weight: 800;
  color: #183152;
  margin-bottom: 15px;
  line-height: 1.2;
}

.urzadzenia-main-title span {
  color: #e52a2c;
}

/* OPIS - CIEMNOSZARY */
.urzadzenia-main-desc {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 35px;
  border-left: 3px solid #e52a2c;
  padding-left: 18px;
}

/* SIATKA URZĄDZEŃ - 3 w rzędzie */
.urzadzenia-devices {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 w rzędzie */
  gap: 15px;
  margin-bottom: 35px;
}

@media (max-width: 992px) {
  .urzadzenia-devices {
    grid-template-columns: repeat(2, 1fr); /* 2 w rzędzie na tabletach */
  }
}

@media (max-width: 576px) {
  .urzadzenia-devices {
    grid-template-columns: repeat(1, 1fr); /* 1 w rzędzie na telefonach */
  }
}

.urzadzenia-device {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  cursor: pointer;
}

.urzadzenia-device:hover {
  background: #fff5f5;
  transform: translateY(-3px);
  border-color: #e52a2c;
  box-shadow: 0 10px 25px rgba(229, 42, 44, 0.1);
}

.device-icon {
  width: 50px;
  height: 50px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: all 0.3s ease;
}

.urzadzenia-device:hover .device-icon {
  background: #e52a2c;
}

.device-icon i {
  font-size: 1.5rem;
  color: #e52a2c;
  transition: all 0.3s ease;
}

.urzadzenia-device:hover .device-icon i {
  color: #ffffff;
}

.urzadzenia-device span {
  color: #183152;
  font-size: 0.85rem;
  font-weight: 500;
}

/* NOTATKA - JASNA */
.urzadzenia-note-box {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 20px 25px;
  display: flex;
  gap: 15px;
  align-items: center;
  border-left: 3px solid #e52a2c;
}

.urzadzenia-note-box i {
  font-size: 2rem;
  color: #e52a2c;
}

.urzadzenia-note-box p {
  color: #4a5568;
  margin: 0;
  font-style: italic;
  font-size: 0.95rem;
}

@media (max-width: 576px) {
  .urzadzenia-note-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ATUTY - JASNE KAFELKI */
.urzadzenia-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .urzadzenia-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .urzadzenia-features {
    grid-template-columns: 1fr;
  }
}

.urzadzenia-feature {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.urzadzenia-feature:hover {
  transform: translateY(-5px);
  border-color: #e52a2c;
  box-shadow: 0 15px 30px rgba(229, 42, 44, 0.1);
}

.urzadzenia-feature .feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(229, 42, 44, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.urzadzenia-feature:hover .feature-icon {
  background: #e52a2c;
}

.urzadzenia-feature .feature-icon i {
  font-size: 1.4rem;
  color: #e52a2c;
  transition: all 0.3s ease;
}

.urzadzenia-feature:hover .feature-icon i {
  color: #ffffff;
}

.urzadzenia-feature .feature-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #183152;
  margin-bottom: 6px;
}

.urzadzenia-feature .feature-content p {
  font-size: 0.8rem;
  color: #4a5568;
  margin: 0;
  line-height: 1.4;
}






/* MODAL USTAWIEŃ */
.cookie-modal-v2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', 'Roboto', sans-serif;
}

.cookie-modal-v2.show {
    display: flex;
}

.cookie-modal-content-v2 {
    background: #111;
    border: 1px solid rgba(229, 42, 44, 0.3);
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content-v2::-webkit-scrollbar {
    width: 6px;
}

.cookie-modal-content-v2::-webkit-scrollbar-track {
    background: #222;
    border-radius: 3px;
}

.cookie-modal-content-v2::-webkit-scrollbar-thumb {
    background: #e52a2c;
    border-radius: 3px;
}

.cookie-modal-header-v2 {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(229, 42, 44, 0.2);
}

.cookie-modal-header-v2 h3 {
    color: #e52a2c;
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-modal-header-v2 p {
    color: #888;
    font-size: 0.8rem;
}

.cookie-option-v2 {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 15px;
    border: 1px solid rgba(229, 42, 44, 0.1);
    transition: all 0.2s ease;
}

.cookie-option-v2:hover {
    border-color: rgba(229, 42, 44, 0.3);
}

.cookie-option-row-v2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-option-info-v2 {
    flex: 1;
}

.cookie-option-info-v2 h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.cookie-option-info-v2 p {
    color: #888;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-option-required-v2 {
    color: #e52a2c;
    font-size: 0.7rem;
    font-weight: 500;
    background: rgba(229, 42, 44, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* TOGGLE SWITCH */
.cookie-toggle-v2 {
    width: 48px;
    height: 26px;
    background: #333;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.cookie-toggle-v2.active {
    background: #e52a2c;
}

.cookie-toggle-v2.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle-slider-v2 {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
}

.cookie-toggle-v2.active .cookie-toggle-slider-v2 {
    transform: translateX(22px);
}

.cookie-modal-footer-v2 {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-modal-btn-v2 {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
}

.cookie-modal-btn-save-v2 {
    background: #e52a2c;
    color: white;
}

.cookie-modal-btn-save-v2:hover {
    background: #b81f21;
}

.cookie-modal-btn-close-v2 {
    background: transparent;
    border: 1px solid #555;
    color: #aaa;
}

.cookie-modal-btn-close-v2:hover {
    border-color: #e52a2c;
    color: #e52a2c;
}

@media (max-width: 768px) {
    .cookie-container-v2 {
        padding: 18px 20px;
    }
    .cookie-layout-v2 {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons-v2 {
        justify-content: center;
    }
    .cookie-modal-content-v2 {
        padding: 20px;
    }
    .cookie-option-row-v2 {
        flex-direction: column;
        align-items: flex-start;
    }
}



/*--------------------------------------------------------------
# KAFELKI OFERTY V2 - NOWA KLASA Z EFEKTEM MGŁY
--------------------------------------------------------------*/
.feat-card-v2 {
  display: block;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: none;
  transition: all 0.35s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

/* NAKŁADKA - SZARA MGŁA */
.feat-card-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(230, 230, 240, 0.8);
  backdrop-filter: blur(1px);
  border-radius: 20px;
  z-index: 1;
  transition: all 0.4s ease;
}

/* Przy najechaniu - tylko lekko odbarwia */
.feat-card-v2:hover::before {
  background: rgba(230, 230, 240, 0.35);
  backdrop-filter: blur(0.5px);
}

/* CZERWONY PASEK NA DOLE */
.feat-card-v2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #e52a2c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 2;
  border-radius: 0 0 20px 20px;
}

.feat-card-v2:hover::after {
  transform: scaleX(1);
}

.feat-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* IKONA - MOCNA CZERWIEŃ Z DELIKATNIE CZERWONĄ OTOCZKĄ */
.feat-card-v2 .feat-icon {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.3);
  color: #e52a2c; /* MOCNA CZERWIEŃ */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all 0.35s ease;
  position: relative;
  z-index: 10;
  border: 2px solid rgba(229, 42, 44, 0.25); /* DELIKATNIE CZERWONA OTOCZKA */
  backdrop-filter: blur(4px);
}

.feat-card-v2:hover .feat-icon {
  background: rgba(229, 42, 44, 0.1);
  color: #e52a2c;
  transform: scale(1.05);
  border-color: rgba(229, 42, 44, 0.5); /* PO NIEJACHANIU - BARDZIEJ CZERWONA OTOCZKA */
}

/* TYTUŁ - CZARNY */
.feat-card-v2 h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #000000;
  position: relative;
  z-index: 10;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.2);
}

/* OPIS - CZARNY */
.feat-card-v2 p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 10;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.2);
}

.feat-card-v2 p strong {
  color: #000000;
}

/* PRZYCISK - CZARNY NA JASNYM TLE */
.feat-card-v2 .feat-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.5);
  padding: 8px 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}

.feat-card-v2 .feat-link i {
  transition: transform 0.3s ease;
  color: #000000;
}

.feat-card-v2:hover .feat-link {
  background: rgba(229, 42, 44, 0.1);
  color: #000000;
  border-color: rgba(229, 42, 44, 0.3);
}

.feat-card-v2:hover .feat-link i {
  color: #000000;
  transform: translateX(5px);
}

/* Link - cały kafelek */
.feat-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

