/* Responsive hero background */
.hero {
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    max-width: 100vw;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
}

/* Warstwa background do sekcji .hero */
/* Slider w sekcji .hero */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    max-width: 100vw;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border: none;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.hero-slider {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100vw;
    height: calc(100vh);
    z-index: 0;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.7s;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}
.hero-slider-nav {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 2;
}
.hero-slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: 2px solid #ff6b35;
    cursor: pointer;
    transition: background 0.2s;
}
.hero-slider-dot.active {
    background: #ff6b35;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45);
    padding: 32px 0 16px 0;
    /* Możesz jeszcze dodać margin-top jeśli chcesz jeszcze wyżej */
}
@media (max-width: 1200px) {
    .hero-slide {
        background-image: url('images/bannerD.webp');
    }
}
@media (max-width: 700px) {
    .hero-slide {
        background-image: url('images/bannerD.webp');
    }
}
@media (max-width: 368px) {
    .hero-slide {
        background-image: url('images/bannerM.webp');
    }
}
/* Czytelny tekst sekcji oferty */
.page-header .container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 40px 32px 32px 32px;
}
.page-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1a2a3a;
}
.page-header h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #2a3a4a;
}
.page-header h3 {
  font-size: 1.12rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #2a3a4a;
}
.page-header p {
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #222;
}
.page-header ul {
  margin: 0 0 16px 24px;
  padding: 0;
}
.page-header ul li {
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 6px;
  color: #222;
  list-style: disc inside;
}
/* Mniejsza wysokość sekcji CTA */
.cta-section {
  padding-top:10px;
  padding-bottom: 10px;
  min-height: unset;
}
/* Footer links as white font */
.footer-section ul li a,
.footer-section a,
.footer-section p a {
  color: #fff !important;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-section ul li a:hover,
.footer-section a:hover,
.footer-section p a:hover {
  color: #d1e3ff !important;
}
/* FAQ w dwóch kolumnach */
.faq-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  margin-top: 32px;
}
.faq-grid-2col .faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 24px 20px;
  margin: 0;
}
@media (max-width: 900px) {
  .faq-grid-2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* Kontakt: 2-kolumnowy grid dla formularza i FAQ */
.contact-form-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-form-col {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 32px 24px;
  max-width: 500px;
  width: 100%;
  justify-self: start;
}

.faq-col {
  background: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 32px 24px;
  max-width: 500px;
  width: 100%;
  justify-self: end;
}

@media (max-width: 900px) {
  .contact-form-faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-form-col, .faq-col {
    max-width: 100%;
    justify-self: stretch;
  }
}

/* FAQ accordion stylowanie */
.faq-accordion {
  margin-top: 16px;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: #e6e6e6;
  border: none;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 4px;
  transition: background 0.2s;
}
.faq-question.active, .faq-question:focus {
  background: #d1e3ff;
}
.faq-answer {
  display: none;
  padding: 12px 16px;
  background: #f4f8ff;
  border-radius: 0 0 6px 6px;
  margin-bottom: 8px;
  font-size: 0.98rem;
}
.faq-item.open .faq-answer {
  display: block;
}
.contact-grid-formfaq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.contact-form-small {
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    padding: 2rem;
}

.faq-accordion {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.faq-accordion h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #ff6b35;
    text-align: left;
}

.accordion {
    width: 100%;
}
.accordion-item {
    border-bottom: 1px solid #eee;
}
.accordion-header {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 0;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}
.accordion-header:hover {
    color: #ff6b35;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 0 0;
    color: #555;
}
.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 0 1rem 0;
}
.accordion-content p {
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .contact-grid-formfaq {
        grid-template-columns: 1fr;
    }
    .faq-accordion {
        margin-top: 2rem;
    }
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.contact-info {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    padding: 2rem;
    font-size: 1.1rem;
}

.contact-details-block p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-details-block strong {
    color: #ff6b35;
}

.contact-map {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map iframe {
    border-radius: 8px;
    width: 100%;
    min-height: 350px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-form-below {
    margin-top: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    padding: 2rem;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map {
        margin-top: 2rem;
    }
}
/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0 !important;
    padding: 0 !important;
    border: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header i nawigacja */
.navbar {
    background: #1a1a1a;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #ff6b35;
    font-size: 2rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main content */
main {
    margin-top: 80px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/spawanie-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #e55a2b;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ff6b35;
    padding: 12px 25px;
    text-decoration: none;
    border: 2px solid #ff6b35;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
}

/* Sections */
section {
    padding: 0;
    margin: 0;
}

.services-preview {
    background: #f8f8f8;
    padding-top: 100px;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.service-item h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.about-preview .container {
    margin: 0;
    padding: 0;
    max-width: none;
}

.about-preview .about-content {
width: 100vw;
display: grid;
margin: 0;
padding-left: 40px;
padding-right: 40px;
box-sizing: border-box;
}
@media (max-width: 600px) {
  .about-preview .about-content {
    padding-left: 16px;
    padding-right: 16px;
  }
  .container {
    margin-top: 0px !important;
  }
}

.about-preview .about-text {
    margin: 0;
    max-width: none;
    text-align: left;
}



.about-content {
    display: flex;
    gap: 0;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Page header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About page styles */
.about-section {
    padding: 4rem 0;
}

.about-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 0;
align-items: start;
grid-template-areas:
    "text image"
    "full full";
}

.about-text {
    grid-area: text;
}
.about-image {
    grid-area: image;
}
.full-width {
    grid-area: full;
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}


.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #ff6b35;
}

.about-text h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    color: #ff6b35;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.about-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-text li:before {
    content: "✓";
    color: #ff6b35;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.certifications-list {
    background: #f8f8f8;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.services-highlight {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.services-highlight h4 {
    margin-top: 0;
    font-size: 1.1rem;
}

.services-highlight ul {
    margin-bottom: 1rem;
}

.rental-info {
    background: #ff6b35;
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.rental-info strong {
    color: #fff;
    text-decoration: underline;
}

.call-to-action {
    background: #1a1a1a;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.call-to-action p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.call-to-action strong {
    color: #ff6b35;
    font-size: 1.2rem;
}

.full-width {
    grid-column: 1 / -1;
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #ff6b35;
    color: white;
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
}

.stat-item.stat-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-clock-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: clockTick 2s ease-in-out infinite;
}

@keyframes clockTick {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.team-section {
    background: #f8f8f8;
    padding: 4rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.company-info {
    padding: 4rem 0;
}

.company-info h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    padding: 2rem;
    border-left: 4px solid #ff6b35;
    background: #f8f8f8;
}

.info-item h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

/* Offer page styles */
.services-section {
    padding: 4rem 0;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.service-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 2rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card ul {
    text-align: left;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.3rem 0;
}

.materials-section {
    background: #f8f8f8;
    padding: 4rem 0;
}

.materials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.material-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.material-item h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.process-section {
    padding: 4rem 0;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-section {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding:0rem 0;
}

.cta-section h2 {
    margin-bottom: 0rem;
    font-size: 2.5rem;
}

.cta-section p {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Portfolio styles */
.portfolio-filters {
    background: #f8f8f8;
    padding: 2rem 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #ff6b35;
    color: white;
}

.portfolio-section {
    padding: 4rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 2rem;
}

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

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

.portfolio-overlay h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.portfolio-overlay p {
    margin-bottom: 1.5rem;
}

.view-details {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.view-details:hover {
    background: #e55a2b;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #ff6b35;
}

.modal-content img {
    width: 100%;
    border-radius: 10px;
    margin: 1rem 0;
}

.project-details p {
    margin: 0.5rem 0;
}

.testimonials-section {
    background: #f8f8f8;
    padding: 4rem 0;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #ff6b35;
}

.testimonial-author span {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

/* Certificates styles */
.certificates-intro {
    padding: 4rem 0;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.certificates-section {
    background: #f8f8f8;
    padding: 4rem 0;
}

.certificates-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.certificate-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
}

.certificate-image {
    width: 150px;
    height: 200px;
    overflow: hidden;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certificate-info {
    padding: 1.5rem;
    flex: 1;
}

.certificate-info h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.certificate-info p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.company-certificates {
    padding: 4rem 0;
}

.company-certificates h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.company-certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.company-cert-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.cert-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-cert-item h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.standards-section {
    background: #f8f8f8;
    padding: 4rem 0;
}

.standards-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.standards-content p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.standard-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.standard-item h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.standard-item ul {
    list-style: none;
    padding-left: 0;
}

.standard-item li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.standard-item li:before {
    content: "•";
    color: #ff6b35;
    position: absolute;
    left: 0;
}

.quality-assurance {
    padding: 4rem 0;
}

.quality-assurance h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.quality-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.quality-text h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.quality-text ul {
    list-style: none;
    padding-left: 0;
}

.quality-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.quality-text li:before {
    content: "✓";
    color: #ff6b35;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.quality-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Contact styles */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: #1a1a1a;
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-details h3 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details a {
    color: #333;
    text-decoration: none;
}

.contact-details a:hover {
    color: #ff6b35;
}

.contact-form h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff6b35;
    outline: none;
}

.checkbox-label {
    display: flex;
    align-items: start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: #ff6b35;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #e55a2b;
}

.map-section {
    background: #f8f8f8;
    padding: 4rem 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.emergency-contact {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.emergency-content h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #ff6b35;
}

.emergency-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.emergency-phone {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 2rem;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-bottom: 1rem;
}

.emergency-phone:hover {
    background: #e55a2b;
}

.emergency-note {
    font-size: 1rem;
    color: #ccc;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    main {
    margin-top: 16px !important; /* lub 0 jeśli chcesz całkowicie usunąć */
  }
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns:1fr;
        text-align: center;
        margin: 10px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quality-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .certificate-item {
        flex-direction: column;
    }
    
    .certificate-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
