/* =====================================================
   ŚLUSARZ ŚLĄSKI — Wspólny arkusz stylów
   Paleta: granat #1a2744 | stal #2c4a7c | akcent #e8890c
   ===================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #1a2744;
  --navy-mid:   #213058;
  --steel:      #2c4a7c;
  --accent:     #e8890c;
  --accent-hover: #cf7700;
  --light-bg:   #f4f6fa;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-mid:   #444c60;
  --text-light: #6b7a99;
  --border:     #dde2ef;
  --shadow:     0 4px 24px rgba(26,39,68,.12);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: .22s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: .5rem;
}

.accent-color { color: var(--accent) !important; }

.section-title {
  margin-bottom: .75rem;
}

.section-subtitle {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.no-mb { margin-bottom: 0 !important; }
.mt-content { margin-top: 1.5rem !important; }
.py-content { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
}

@media (max-width: 400px) {
  .btn {
    padding: .85rem 1rem;
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
  }
}

.btn-phone {
  background: var(--accent);
  color: var(--white);
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 6px 28px rgba(232,137,12,.38);
}

.btn-phone:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232,137,12,.46);
}

.btn-large { font-size: 1.25rem; padding: 1.05rem 2.25rem; }
.btn-cta-large { font-size: 1.3rem; padding: 1.1rem 2.5rem; }
.btn-service { margin-top: .5rem; display: inline-flex; font-size: 1rem; padding: .85rem 1.75rem; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
  font-size: .95rem;
  padding: .75rem 1.5rem;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--steel);
  transform: translateY(-2px);
}

/* =====================================================
   TOPBAR
   ===================================================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
}

.topbar a {
  color: var(--accent);
  font-weight: 700;
}

.topbar-hours {
  display: flex;
  align-items: center;
  gap: .35rem;
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header {
  background: var(--navy-mid);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 480px) {
  .header-inner { gap: 0.5rem; }
  .site-logo .logo-main { font-size: 1rem; }
  .site-logo .logo-sub { display: none; }
  .header-cta { gap: 0.5rem; }
  .header-cta .btn-phone { 
    padding: 0.6rem 0.8rem; 
    font-size: 0.85rem;
    min-width: auto;
  }
}

@media (max-width: 360px) {
  .header-inner { padding: 0 0.5rem; }
  .site-logo .logo-main { font-size: 0.9rem; }
  .header-cta .btn-phone { 
    padding: 0.5rem 0.6rem; 
    font-size: 0.8rem;
  }
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: .05rem;
}

.site-logo .logo-main {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}

.site-logo .logo-main span {
  color: var(--accent);
}

.site-logo .logo-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta .hours-badge {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-align: right;
  display: none;
}

@media (min-width: 480px) {
  .header-cta .hours-badge { display: block; }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 60%, #1f3a6e 100%);
  color: var(--white);
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,137,12,.18);
  border: 1px solid rgba(232,137,12,.35);
  color: var(--accent);
  font-size: .85rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: .5rem;
}

.subtitle-large { font-size: 1.2rem; margin-bottom: .75rem; }

.hero-cities {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 2rem;
}

.city-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: .25rem .7rem;
  border-radius: 50px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-nav-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-nav-btns .nav-card {
  display: flex;
  align-items: center;
  gap: .65rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  padding: .8rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--transition), border-color var(--transition);
}

.hero-nav-btns .nav-card:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.35);
}

.hero-nav-btns .nav-card i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* =====================================================
   TRUST STRIP
   ===================================================== */
.trust-strip {
  background: var(--accent);
  padding: .85rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-size: .92rem;
  font-weight: 600;
}

.trust-item i {
  font-size: 1.05rem;
}

/* =====================================================
   SECTION LAYOUT
   ===================================================== */
section {
  padding: 4rem 0;
}

section.bg-light {
  background: var(--light-bg);
}

section.bg-navy {
  background: var(--navy);
  color: var(--white);
}

section.bg-navy h2,
section.bg-navy h3 {
  color: var(--white);
}

section.bg-navy .section-subtitle {
  color: rgba(255,255,255,.7);
}

.section-hero-img { padding: 0; background: var(--light-bg); }
.img-hero-city { aspect-ratio: 3 / 1; width: 100%; border-radius: var(--radius-lg); object-fit: cover; display: block; }

/* =====================================================
   SERVICES GRID
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.services-grid-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
  scroll-margin-top: 100px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,39,68,.16);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.service-card-img-large {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .service-card-img-large {
    height: 320px;
    aspect-ratio: auto;
  }
}

.service-card-body {
  padding: 1.5rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,137,12,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--accent);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--navy);
}

.service-card p {
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card-body ul {
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}

.service-card-body ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  list-style: none;
}

.service-card-body ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--accent);
  font-size: 1.1rem;
}

.service-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-weight: 700;
}

/* =====================================================
   FEATURES
   ===================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  transition: background var(--transition);
}

.feature-card:hover {
  background: rgba(255,255,255,.1);
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--white);
}

.feature-card h3 {
  color: var(--white);
  margin-bottom: .5rem;
}

.feature-card p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.review-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: #1a2744; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.avatar-blue { background: #2c4a7c; }
.avatar-orange { background: #e8890c; }
.author-name { font-weight: 700; font-size: .95rem; color: var(--navy); }

.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: .75rem;
  display: flex;
  gap: .15rem;
}

.review-text {
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.6;
  font-style: italic;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .2rem;
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 600;
}

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  padding: 3.5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: .75rem;
}

.cta-banner p {
  color: rgba(255,255,255,.72);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* =====================================================
   OBSŁUGIWANE MIEJSCOWOŚCI
   ===================================================== */
.cities-section {
  padding: 3rem 0;
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.city-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--light-bg);
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: .45rem 1rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
}

.city-chip i {
  color: var(--accent);
  font-size: .85rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand .logo-main {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
}

.footer-brand .logo-main span {
  color: var(--accent);
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-top: .5rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-col ul li {
  margin-bottom: .5rem;
  font-size: .88rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.footer-col ul li i {
  color: var(--accent);
  margin-top: .2rem;
  min-width: 14px;
}

.footer-col a {
  color: rgba(255,255,255,.72);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--accent) !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: .5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  font-size: .8rem;
}

.footer-bottom a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* =====================================================
   POLITYKA PRYWATNOŚCI PAGE
   ===================================================== */
.policy-page {
  padding: 3rem 0 5rem;
}

.policy-page .policy-header {
  background: var(--navy);
  padding: 2.5rem 0 2rem;
  margin-bottom: 3rem;
}

.policy-page .policy-header h1 {
  color: var(--white);
}

.policy-page .policy-header p {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  margin-top: .5rem;
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.25rem;
  margin: 2.5rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--accent);
  color: var(--navy);
}

.policy-content h3 {
  font-size: 1rem;
  margin: 1.5rem 0 .5rem;
  color: var(--navy);
}

.policy-content p {
  color: var(--text-mid);
  margin-bottom: .85rem;
  font-size: .95rem;
  line-height: 1.7;
}

.policy-content ul {
  list-style: disc;
  margin: .5rem 0 1rem 1.5rem;
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.7;
}

.policy-content ul li {
  margin-bottom: .35rem;
}

.policy-toc {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.policy-toc h3 {
  margin: 0 0 1rem;
  color: var(--navy);
}

.policy-toc ol {
  margin-left: 1.2rem;
  color: var(--text-mid);
  font-size: .9rem;
}

.policy-toc ol li {
  margin-bottom: .4rem;
}

.policy-toc a {
  color: var(--steel);
  text-decoration: underline;
  transition: color var(--transition);
}

.policy-toc a:hover {
  color: var(--accent);
}

/* =====================================================
   RESPONSIVE UTILITIES
   ===================================================== */
@media (max-width: 639px) {
  section { padding: 2.75rem 0; }
  .btn-phone { font-size: 1rem; padding: .9rem 1.6rem; }
  .hero { padding: 3rem 0 3.5rem; }
}

@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card-img { height: 200px; }
}

/* SKIP NAV for accessibility */
.skip-nav {
  position: absolute;
  top: -40px;
  left: 0;
  padding: .5rem 1rem;
  background: var(--accent);
  color: var(--white);
  z-index: 200;
  transition: top .2s;
}
.skip-nav:focus { top: 0; }
