/* === Podstawy === */
:root {
  --main-color: #002e4d;     
  --accent-color: #bd9d33; 
  --accent-color-hover: #a78a2d; 
  --nav-color: #f8f9fc;
  --dark-bg-hover: #4d4d4d;
  --light-bg: #f9f9f9;
  --dark-bg: #1a1a1a;
  --font-header: 'Lora', serif;
  --font-body: 'Open Sans', sans-serif;

  --dark-blue: #2c3e70;  
  --gold: #c09301;
  --white: #fefefe;
  --gray-dark: #3a4a6b;
  --gray-light: #f7f7f7;
  --text-dark: #1b2237;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: #1c1c1c;
  background-color: white;
  line-height: 1.6;
}

/* === Nawigacja === */
nav {
  background-color: var(--nav-color);
  padding: 0.1rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e4e3e3;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

nav .logo img {
  max-height: 95px;
}

#menu-toggle {
  display: none;
  font-size: 1.4rem;
  background: #dfe2e4;
  border: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 17px;
  color: var(--main-color);
  transition: color 0.3s;
}

nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

/* Podkreślenie animowane */
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 2px;
}

/* Hover: podkreślenie rozciąga się od środka na boki */
.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
  left: 0;
}

.nav-link.text-gold {
  color: var(--accent-color);
}

.nav-link.text-gold:hover,
.nav-link.text-gold:focus {
  color: #684e07; 
}

.call-to-action {
  padding: 0.5rem 1rem;
  border: 1px solid rgb(97, 97, 97);
  border-radius: 8px;
  transition: color 0.4s ease;
  background-color: #eeeeee;
}
.call-to-action:hover {
   border:  1px solid var(--accent-color);
   color: var(--accent-color);
}

/* === Header === */
header {
  position: relative;
  height: 80vh;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

header p {
  font-size: 1.9rem;
  margin-bottom: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  header {
    height: 70vh;
    padding: 2rem 1rem;
    text-align: center;
    gap: 1rem;
  }

  header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .btn-primary {
    margin-bottom: 20px;
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }

  .fade-arrow {
    margin-top: 2rem;
    width: 36px;
    height: 36px;
  }

  .fade-arrow svg {
    width: 100%;
    height: 100%;
  }
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--accent-color-hover);
}

/* STRZAŁKA */
.fade-arrow {
  position: absolute;
  bottom: 2rem;
  z-index: 2;
  animation: bounce 2s infinite;
  color: white;
}
.fade-arrow svg {
  width: 40px;
  height: 40px;
}


@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(10px); opacity: 1; }
}


/* === Sekcje === */
section.light {
  background-color: #fdfdfd;
  padding: 6rem 1rem;
  max-width: 1200px;
  margin-inline: auto;
}
section.light-full {
  background-color: #fdfdfd;
  padding: 6rem 1rem;
  margin-inline: auto;
}

section.gray {
  background-color: #f2f2f2;
  padding: 6rem 1rem;
  margin-inline: auto;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.5rem;
  background: linear-gradient(90deg, #2c3e50, #4a6073);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  letter-spacing: 1.2px;
}
.section-title.uslugi {
  background: none;
  background-clip: border-box;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #f4f3f3; 
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f3da4b, #a58e38);
  margin: 12px auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(212, 154, 102, 0.7);
}

/* === Czym się zajmuję === */
.czymsiezajmuje-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px;
  gap: 40px;
}

.czymsiezajmuje-wrapper .content {
  flex: 1 1 55%;
  color: #002147; 
  font-size: 0.8rem;
  line-height: 1.75;
  text-align: justify;
}

.czymsiezajmuje-wrapper .content p {
  margin-bottom: 12px;
}

.czymsiezajmuje-wrapper .content strong {
  color: #060606;
  font-weight: 700;
}

.czymsiezajmuje-wrapper .image {
  flex: 1 1 30%;
  text-align: center;
}

.czymsiezajmuje-wrapper .image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .czymsiezajmuje-wrapper {
    flex-direction: column;
    padding: 30px 15px;
  }

  .czymsiezajmuje-wrapper .content,
  .czymsiezajmuje-wrapper .image {
    flex: 1 1 100%;
  }

  .czymsiezajmuje-wrapper .image {
    margin-top: 20px;
  }
}

/* === O mnie === */
.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 2rem;
  padding: 1rem;
  }

.about-text, .about-text2 {
  flex: 1 1 40%;
  color: #002147;
  line-height: 1.75;
  text-align: justify;
  font-size: 0.8rem;
  z-index: 4;
}

.about_foto {
  width: 380px;
  height: 380px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); 
}

.about_foto img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.highlight {
  background: linear-gradient(120deg, #f2cf72 0%, #f2b100 100%);
  color: #002147;
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  font-weight: 600;
}

.separator {
  margin: 1rem 0;
  text-align: center;
}

.separator span {
  display: inline-block;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 50px;
  animation: growFade 2s infinite ease-in-out;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 3rem;
}

.about-list li {
  margin-bottom: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-list i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.quote-block {
  margin: 40px 30px;
  background-color: #fffbe6;
  border-left: 6px solid var(--accent-color);
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  font-style: italic;
  animation: fadeInUp 1s ease;
}

@keyframes growFade {
  0%, 100% { transform: scaleX(1); opacity: 0.6; }
  50% { transform: scaleX(1.3); opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    padding: 1rem; 
    gap: 2rem; 
  }

  .about-wrapper > * {
    width: 100%; 
  }
  .about_foto {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 10px auto;
  }
  .about-list {
    text-align: start;
  }
  .quote-block {
    width: 100%;
    margin: 30px auto;
    padding: 1rem;
    font-size: 0.9rem;
}
}

/* sekcja Wycena */
.wycena-opis {
  padding: 20px;
  background-color: #dfe2e4;
  font-size: 17px;
}

.wycena-tytul {
  text-align: center;
  margin-bottom: 20px;
  color: #002147;
}
.wycena-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #f2f2f2; 
  color: #002147;
}

.left-cards,
.right-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.image-center {
  flex: 1;
  min-width: 250px;
  max-width: 500px;
  text-align: center;
}

.image-center img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}
.image-center img:hover  {
  transform: scale(1.2);
}

/* Styl kart */
.card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #002147;
}

/* Sekcja z przyciskiem */
.dzwon {
  background-color: #ffffff;
  text-align: center;
  padding: 3rem 1rem;
}

.dzwon p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #222;
}

.btn-dark {
  background-color: #021d39; 
  color: #fff;
  padding: 0.8rem 1.4rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-dark:hover {
  background-color: #062d58;
}

/* === Usługi === */
.services-wrapper {
  padding: 0;
  margin: 0;
  color: #002147;
  overflow: hidden;
}
.parallax-section {
  position: relative;
  background-image: url('images/tlo_wiezowce.jpg'); 
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
  z-index: 0;
  overflow: hidden;
}
.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 7, 7, 0.421);
  z-index: -1;
}
.parallax-section > p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
  padding: 0 20px;
  color: #f0f0f0;
}

.lista {
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 40px auto;
}

.lista-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f8f9fa;
  margin-bottom: 34px;
}

.lista-card ol {
  counter-reset: numeracja;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.lista-card li {
  counter-increment: numeracja;
  position: relative;
  padding: 12px 20px 12px 60px;
  margin-bottom: 12px;
  background-color: #091c3d73;
  border-left: 4px solid var(--accent-color);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #fafafb;
  font-size: 0.85rem;
}

.lista-card li:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.lista-card li::before {
  content: counter(numeracja) ".";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 1.2rem;
  color: #deba44;
}

.strong {
  font-weight: 600;
  color: #fdfdfe;
}


/* === Cennik === */
.cennik-wrapper {
  padding: 30px 20px;
  border-radius: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* NAGŁÓWKI */
.cennik-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #002147;
  text-align: center;
}

.cennik-title i,
.cennik-title2 i {
  color: var(--accent-color, #d4af37);
  margin-right: 8px;
}

/* GÓRNA CZĘŚĆ */
.cennik-top1 {
  display: flex;
  align-items: stretch;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.cennik-title2 {
  flex: 1 1 55%;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #002147;
}
.cennik-text {
  flex: 1 1 55%;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #002147;
  text-align: justify;
}
.cennik-image img {
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  flex: 1 1 45%;
  display: flex;
  align-items: stretch;
}

.cennik-intro {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

/* DOLNA CZĘŚĆ */
.cennik-bottom {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.cennik-image1 {
  width: 300px;
  height: 180px;
  border-radius: 5%;
  object-fit: cover;
  margin: 0 auto;
  transition: transform 0.5s ease;
}

.cennik-image1:hover {    
  transform: scale(1.05);
}

.cennik-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 80px;
  margin-top: 20px;
  color: #002147;
}
.table1, .table2, .table3, .table4, .table5, .table6 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cennik-category {
  font-weight: bold;
  font-size: 1rem;
  color: var(--accent-color);
  margin-top: 10px;
  margin-bottom: 8px;
  text-align: center;
}

.cennik-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  background-color: rgba(10, 34, 64, 0.05);
  border-radius: 8px;
}

.cennik-row span {
  font-size: 0.85rem;
  color: #222;
}

.cennik-row span:last-child {
  font-weight: 600;
  color: #0a2240;
  text-align: end;
}

.uwaga {
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
  margin-top: 10px;
}

/* NOTATKA */
.cennik-note {
  font-size: 0.9rem;
  color: #444;
  margin-top: 40px;
  line-height: 1.5;
  text-align: center;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .cennik-table {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cennik-top1 {
    flex-direction: column;
    align-items: flex-start;
  }

  .cennik-image img {
    max-width: 100%;
  }

  .cennik-title,
  .cennik-title2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .cennik-bottom {
    grid-template-columns: 1fr; /* Jedna kolumna na telefonie */
  }
}


/* === Kontakt === */
.contact-wrapper {
  font-family: 'Open Sans', sans-serif;
  max-width: 1200px;
  margin: 0rem auto;
  padding: 20px;
  color: #002147;
}

/* Tytuł */
.contact-subtitle h2 {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Górny lewy blok: zdjęcie + dane + mapa */
.contact-header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.photo {
  margin-top: 50px;
  /* width: 400px; */
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.contact-details {
  width: 100%;
  max-width: 380px;
  text-align: left;
  margin: 0 auto;
}

.title {
  text-align: left;
  line-height: 1.5;
  color: #002147;
  max-width: 400px;
  margin: 20px auto;
  font-family: 'Open Sans', sans-serif;
}

.title1 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  color: #002147;
}

.title2 {
  font-size: 28px;
  font-weight: 700;
  margin: 4px 0 30px 0;
}

.title p {
  margin: 6px 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.title i {
  color: var(--accent-color);
  min-width: 20px;
}

.title a {
  text-decoration: none;
  color: #002147;
  transition: color 0.2s ease;
}

.title a:hover {
  color: var(--accent-color-hover);
}

/* Formularz */
.contact-form {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgb(244, 244, 244);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(19, 19, 19, 0.35);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 1.2rem;
  color: var(--dark-blue);
}

.contact-form label {
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark-blue);
}

.contact-form input,
.contact-form textarea {
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fefefe;
}

.checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: rgb(1, 11, 69); 
  cursor: pointer;
}

.checkbox a {
  color: rgb(220, 165, 3);
  text-decoration: underline;
}


.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(192, 147, 1, 0.2);
}

.contact-form button {
  background-color: var(--accent-color);
  color: #fff;
  padding: 14px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s ease;
  width: 100%;
}

.contact-form button:hover {
  background-color: var(--accent-color-hover);
}

.contact-form .error {
  color: red;
  font-size: 0.85rem;
  text-align: center;
}

.contact-form .success {
  color: green;
  font-size: 0.9rem;
  text-align: center;
}

.required {
	color: rgb(212, 9, 9);
	font-size: 0.7rem;
}

.success {
	color: green;
	margin-top: 10px;
}
.error {
	color: red;
	margin-top: 10px;
}
/* Mała mapa pod danymi */
.contact-form-map {
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.map-container {
  margin: 0 auto; 
  max-width: 1200px;
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: none;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 900px) {
  .contact-form-map {
    flex-direction: column;
    align-items: center;
  }
  .title1 {
    font-size: 16px;
  }
 .title2 {
   font-size: 22px;
  }
  .title p {
    font-size: 16px;
  }
  .contact-subtitle h2 {
    font-size: 1rem;
    margin-bottom: 2rem;
}
  .contact-form {
    max-width: 100%;
  }

  .contact-header-content {
    max-width: 350px;
    margin: 0 auto 2rem auto;
    flex-direction: column;
  }
}

/* === Stopka === */
.footer {
  background-color: #ecedef;
  padding: 20px;
  padding-top: 40px;
  color: #1b2237;
  border-top: 2px solid #e8e8e8; 
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
  font-size: 16px;
}

.footer-logo-text {
  flex: 1 1 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-text img {
  max-width: 320px;
  height: auto;
  margin-bottom: 10px;
}

.footer-description {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #444;
}

.footer-contact,
.footer-links {
  flex: 1 1 50px;
}
.footer-contact {
  padding-left: 60px;
}

.footer-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--main-color);
}

.footer-contact p {
  margin: 8px 0;
  font-size: 0.8rem;
}
.footer-links a {
  margin-top: 8px;
  font-size: 0.8rem;
}

.footer-contact i {
  margin-right: 8px;
  color: var(--accent-color);
}
.footer-contact a {
  color: #1b2237;
  text-decoration: none;
}

.footer-links {
  padding-left: 90px;
}

.footer-links a {
  display: block;
  color: #1b2237;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color-hover);
}

.footer-hr {
  margin: 30px auto 10px;
  border: none;
  height: 1px;
  background-color: #ccc;
  width: 100%;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  margin-top: 10px;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo-text {
    align-items: center;
  }

  .footer-description {
    max-width: 300px;
  }

  .footer-contact,
  .footer-links {
    text-align: center;
  }
  .footer-links {
  padding-left: 0px;
}
  .footer-contact {
    padding-left: 10px;
  }
}

/* Sentencja */
.sentencja-wrapper {
  background-color: #232323;
  padding: 40px;
  text-align: center;
  border-top: 6px solid var(--accent-color); 
  margin-bottom: 80px;
}

.sentencja-wrapper .sentencja {
  font-size: 0.8rem;
  font-style: italic;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

.sentencja-wrapper .sentencja::before {
  content: "“";
  font-size: 3rem;
  color: var(--accent-color);
  position: absolute;
  left: -25px;
  top: -20px;
}

.sentencja-wrapper .sentencja::after {
  content: "”";
  font-size: 3rem;
  color: var(--accent-color);
  position: absolute;
  right: -25px;
  bottom: -20px;
}


/* === Polityka prywatności === */
.privacy-policy {
  max-width: 1100px;
  margin: 30px auto;
  padding: 40px;
  color: #002244; 
  font-family: 'Open Sans', sans-serif;
  line-height: 1.8;
  font-size: 16px;
}

.privacy-policy h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #002244;
  border-bottom: 3px solid rgb(207, 176, 54);
  display: inline-block;
  padding-bottom: 5px;
}
.privacy-policy h4 {
  margin-top: 20px;
  font-weight: 600;
  font-size: 17px;
}
.privacy-policy h2 {
  font-size: 18px;
  margin-top: 30px;
  color: #002244;
}
.privacy-policy .underline {
  text-decoration: underline;
}

.privacy-policy p {
  margin: 12px 0;
}

.gwiazdka {
  margin-top: 30px;
  font-weight: 300;
  font-size: 14px;
  font-style: italic;
}
.privacy-policy ol {
  margin: 10px 0 20px 25px;
  list-style-type: disc;
}
.privacy-policy ul {
  margin: 10px 0 20px 15px;
  list-style-type: none;
}

.privacy-policy a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-policy a:hover {
  color: #cc7300;
}


@media screen and (max-width: 768px) {
  .privacy-policy {
    padding: 20px;
  }

  .privacy-policy h1 {
    font-size: 26px;
  }

  .privacy-policy h2 {
    font-size: 18px;
  }
}


/* === Responsive === */
@media (max-width: 1200px) {
  nav .logo img {
    max-height: 85px;
  }
  nav a {
    margin-right: 0.8rem;
  }
  nav ul {
    gap: 0.8rem;
  }
  nav ul li {
    font-size: 0.8rem;
  }
}

@media (max-width: 992px) {

  nav .logo img {
  max-height: 75px;
  }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: white;
    position: absolute;
    right: 2rem;
    top: 80px;
    padding: 1rem 2rem;
    border: 1px solid #ddd;
    border-radius: 6px;
  }

  nav ul.show {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }
 
  nav ul {
    right: 1rem;
    left: 1rem;
  }
  section.light {
  padding: 6rem 1rem;
  }
  section.light-full {
    padding: 6rem 1rem;
  }

  section.gray {
    padding: 6rem 1rem;
  }

 .section-title {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
 }
  .parallax-section {
    background-attachment: scroll; 
  }
  .parallax-section > p {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  .lista {
    padding: 10px;
  }
  .wycena-tytul {
    font-size: 1.1rem;
  }
  .card p {
    font-size: 0.8rem;
  }
  .dzwon p {
    font-size: 1rem;
  }
  .cennik-image img {
    max-width: 70%;
    margin: 0 auto;
  }
  .cennik-title2 {
    text-align: center;
  }
}


/* === MEDIA QUERIES === */
@media (max-width: 768px) {
  
  .about-wrapper,
  .wycena-wrapper,
  .contact-header-content,
  .footer-content {
    flex-direction: column;
  }
  .cennik-title {
    font-size: 1.4;
  }
  .cennik-table thead {
    display: none;
  }

  .cennik-table td {
    display: block;
    width: 100%;
    padding: 0.75rem 0.5rem;
    font-size: 0.95rem;
  }

  .cennik-table tr {
    display: block;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ccc;
    padding-bottom: 0.5rem;
  }

  .cennik-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 0.3rem;
    color: #1b2237;
  }
  .cennik-title2,
  .cennik-title {
    font-size: 1.2rem;
  } 
  .cennik-row span {
    font-size: 16px;
  }
  .cennik-row span:last-child {
    font-size: 16px;
  }
  .cennik-intro {
    font-size: 17px;
    line-height: 1.6;
  }
}

/* === Modal === */
#modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;         
  justify-content: center;   
  align-items: center;       
  padding: 20px;             
}

/* Wnętrze modalu */
#modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

#modal .modal {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  margin: 100px auto;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

#modal .modal button {
  padding: 8px 12px;
  background-color: #002147;
  color:white;
  border-radius: 5px;
  margin-top: 20px;
}



.google-review-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0; 
}

.google-link {
  display: inline-block;
  padding: 12px 22px;
  background-color: #0354d7; 
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.google-link:hover {
  background-color: #3367d6;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
