/*
Theme Name: KlimatyzowanyDOM
Theme URI: https://klimatyzowanydom.pl
Author: BeMore
Author URI: https://bemore.pl
Description: Motyw dla Kosków :)
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
Version: 1.0
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #1e40af;
  --color-primary-light: #3b82f6;
  --color-primary-dark: #1e3a8a;
//  --color-accent: #10b981;
  --color-accent: #0F3A7D;
  --color-accent-light: #34d399;
  --color-text: #1f2937;
  --color-text-light: #6b7280;
  --color-bg: #ffffff;
  --color-bg-light: #f9fafb;
  --color-border: #e5e7eb;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

:root {
    --light-color: #fff;
    --dark-color: #181818;
    --light-font-color: #181818;
    --light-bg-font-color: #fff;
    --dark-font-color: #fff;
    --dark-bg-color: #191919;
    --accent-color: #01cab8;
    --alternate-color: #142958;
    }



html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

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

@media (min-width: 768px) {
  .navbar-menu {
    display: flex;
  }
}

.navbar-menu a {
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-menu a:hover {
  color: var(--color-primary);
}

.navbar-cta {
  background-color: #22C55E!important;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.navbar-cta:hover {
  background-color: var(--color-accent-light);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a8a 100%);
  color: white;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3rem;
  }
}

.hero-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #dbeafe;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--color-accent-light);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

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

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.875rem;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-image {
  display: none;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

@media (min-width: 768px) {
  .hero-image {
    display: flex;
  }
}

/* Benefits Section */
.benefits {
  padding: 4rem 0;
  background-color: var(--color-bg-light);
}

@media (min-width: 768px) {
  .benefits {
    padding: 6rem 0;
  }
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

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

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

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.benefit-icon.green {
  background-color: #dcfce7;
  color: #16a34a;
}

.benefit-icon.blue {
  background-color: #dbeafe;
  color: #1e40af;
}

.benefit-icon.cyan {
  background-color: #cffafe;
  color: #0891b2;
}

.benefit-icon.purple {
  background-color: #f3e8ff;
  color: #9333ea;
}

.benefit-card h3 {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.benefit-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Services Section */
.services {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .services {
    padding: 6rem 0;
  }
}

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

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

.service-card {
  background-color: white;
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: 0.5rem;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.service-card li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* Why Choose Us Section */
.why-us {
  padding: 4rem 0;
  background-color: var(--color-bg-light);
}

@media (min-width: 768px) {
  .why-us {
    padding: 6rem 0;
  }
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.why-us-item h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.why-us-item p {
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Brands Section */
.brands {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .brands {
    padding: 6rem 0;
  }
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  font-weight: 600;
  color: var(--color-text);
  transition: box-shadow 0.3s ease;
}

.brand-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brands-additional {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
}

.brands-additional p {
  color: var(--color-text);
  text-align: center;
  margin: 0;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a8a 100%);
  color: white;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .contact {
    padding: 6rem 0;
  }
}

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

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #dbeafe;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item p {
  color: #dbeafe;
  margin: 0.25rem 0;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-group button {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--color-accent);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-group button:hover {
  background-color: var(--color-accent-light);
}

/* Footer */
.footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 2rem 0;
  text-align: center;
}

.footer p {
  margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .hero-text h1 {
    font-size: 1.875rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

/* WordPress Specific Styles */
.wp-block-image {
  margin: 1.5rem 0;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
}

/* 
   KlimatyzowanyDOM - Finalne poprawki nagłówków (v3)
   Wklej do: Wygląd > Dostosuj > Dodatkowe CSS
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;600;700&display=swap');

/* Globalne wymuszenie fontów */
.bt_bb_section, .bt_bb_headline, .bt_bb_text, .bt_bb_button, .bt_bb_section * {
    font-family: 'Roboto', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, 
.bt_bb_headline, .bt_bb_headline .bt_bb_headline_content,
.bt_bb_headline .bt_bb_headline_content span {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    text-transform: none !important; /* Zapobiega wymuszonemu uppercase jeśli motyw go ma */
}

/* Specyficzne poprawki dla modułu Headline Bold Builder */
.bt_bb_headline .bt_bb_headline_content {
    line-height: 1.2 !important;
}

/* Hero H1 - dopasowanie do 56px */
.hero-h1 .bt_bb_headline_content {
    font-size: 56px !important;
}

@media (max-width: 768px) {
    .hero-h1 .bt_bb_headline_content {
        font-size: 32px !important;
    }
    .bt_bb_headline .bt_bb_headline_content {
        font-size: 28px !important; /* Dla H2 na mobile */
    }
}

/* Flexbox i odstępy */
.d-flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.text-muted { color: #64748B !important; }

/* Przyciski */
.btn {
    display: inline-block;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
//.btn-primary { background-color: #0F3A7D !important; color: white !important; border: none !important; }
.btn-success { background-color: #22C55E !important; color: white !important; border: none !important; }
.btn-outline-light { border: 2px solid white !important; color: white !important; background: transparent !important; }

/* Karty */
.card {
    background: white;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important; }
.shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important; }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important; }

/* Formularz */
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Listy */
.list-unstyled { padding-left: 0; list-style: none; }
.list-unstyled li { margin-bottom: 0.5rem; }


/* 
   KlimatyzowanyDOM - CSS dla sekcji korzyści (v5)
   Wklej do: Wygląd > Dostosuj > Dodatkowe CSS
*/

.benefit-card {
    background: #ffffff !important;
    padding: 40px 20px !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075) !important;
    transition: all 0.3s ease !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    border: none !important;
    margin-bottom: 20px;
}

.benefit-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

.benefit-icon-wrapper {
    margin-bottom: 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: transform 0.3s ease !important;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.1) !important;
}

.benefit-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0F3A7D !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

.benefit-text {
    font-family: 'Roboto', sans-serif !important;
    color: #64748B !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Reset dla Bold Buildera, który może dodawać marginesy do p */
.benefit-card p {
    margin: 0 !important;
}

/* Stylizacja kart oferty */
.offer-card {
    background: #ffffff !important;
    padding: 40px 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border: 1px solid #f0f0f0 !important;
    margin-bottom: 30px;
}

.offer-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
}

/* Wyróżnienie popularnej sekcji */
.offer-card.popular {
    border: 2px solid #22C55E !important;
    position: relative;
}

.offer-card.popular::before {
    content: "ZAMÓW";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #22C55E;
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 10;
}

.offer-card h3 {
    color: #0F3A7D !important;
    margin-bottom: 20px !important;
    font-size: 24px !important;
    font-weight: 700 !important;
}

/* Stylizacja listy z ikonami */
.offer-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 30px 0 !important;
    flex-grow: 1;
}

.offer-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #4B5563;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.offer-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22C55E;
    font-weight: bold;
    font-size: 18px;
}

/* Dopasowanie przycisków wewnątrz kart */
.offer-card .btn {
    width: 100%;
    font-weight: 700;
    padding: 12px;
}


/* Stylizacja listy korzyści z ikonami checkmark */
.benefits-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    text-align: left;
}

.benefit-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: transparent;
    color: #22C55E;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    margin-top: 2px;
}

.benefit-content h5 {
    color: #0F3A7D !important;
    margin: 0 0 5px 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

.benefit-content p {
    color: #4B5563 !important;
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
}

/* Zaokrąglone rogi dla obrazka technika */
.technician-image img {
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}


.brand-card {
    background: #ffffff !important;
    padding: 25px 15px !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    text-align: center !important;
    transition: transform 0.3s ease !important;
    border: 1px solid #f0f0f0 !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px;
}

.brand-card:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.brand-card span {
    font-weight: 700 !important;
    color: #0F3A7D !important;
    font-size: 18px !important;
    letter-spacing: 1px;
}
.brand-card p {
    font-weight: 700 !important;
    color: #0F3A7D !important;
    font-size: 18px !important;
    letter-spacing: 1px;
}

/* Tekst pod spodem */
.brands-footer-text {
    color: #6B7280 !important;
    font-size: 14px !important;
    margin-top: 30px !important;
    line-height: 1.6 !important;
}

/* Stylizacja sekcji kontaktowej */
.contact-info-wrapper {
    color: #ffffff !important;
    text-align: left;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 24px;
    color: #22C55E;
    font-size: 20px;
    margin-right: 15px;
}

.contact-info-content h5 {
    color: #ffffff !important;
    margin: 0 0 5px 0 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

.contact-info-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
    font-size: 16px !important;
}
/* Style dla pól formularza KlimatyzowanyDOM */
.kd-input {
    background-color: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.2) !important;
    color: white !important;
}

.kd-input::placeholder {
    color: rgba(255,255,255,0.7) !important;
    opacity: 1 !important;
}

/* Stylizacja przycisku wysyłania */
.wpcf7-submit.btn.btn-success.btn-lg.w-100 {
    background-color: #22C55E !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 0.5rem !important;
    width: 100% !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.wpcf7-submit.btn.btn-success.btn-lg.w-100:hover {
    opacity: 0.9;
}

/* Podstawowe style dla wszystkich przycisków Bold Builder */
.bt_bb_button .bt_bb_link {
    display: inline-block !important;
    font-weight: 600 !important;
    padding: 1rem 2rem !important; /* Rozmiar Large */
    font-size: 1.1rem !important;
    border-radius: 0.5rem !important;
//    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;
    text-align: center !important;
    color: white !important;
}

/* KLASA DLA ZIELONEGO PRZYCISKU (np. Wycena Gratis) */
.bt_bb_button.bb-btn-green .bt_bb_link {
    background-color: #22C55E !important;
}

/* KLASA DLA NIEBIESKIEGO PRZYCISKU (np. Dowiedz się więcej) */
.bt_bb_button.bb-btn-blue .bt_bb_link {
    background-color: none !important;
}


.bt_bb_button.bb-btn-blue2 .bt_bb_link {
    background-color: #153C92 !important;
}



/* Efekt hover dla obu typów */
.bt_bb_button .bt_bb_link:hover {
    opacity: 0.9 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Resetowanie tekstu wewnątrz przycisku */
.bt_bb_button .bt_bb_button_text {
    color: inherit !important;
    font-weight: inherit !important;
    text-transform: none !important;
}


.bt_bb_icon_holder, 
.bt_bb_icon_holder span {
    color: white !important;
}

/*
.bt_bb_icon_holder:hover, 
.bt_bb_icon_holder:hover span {
    color: rgba(255, 255, 255, 0.8) !important;
}
.custom-logo-link img {
    max-height: 80px; 
    width: auto !important;
    height: auto !important;
}

.bt_bb_icon_holder {
    color: white !important;
    font-size: 1em; 
    vertical-align: middle !important; 
}

.bt_bb_icon_holder span {
    color: white !important;
    font-size: inherit; 
}


.bt_bb_icon_holder {
    color: white !important;
    vertical-align: middle !important; 
}

.bt_bb_icon_holder span {
    color: white !important;
    font-size: inherit; 
}
*/

.bt_bb_size_large.bt_bb_icon .bt_bb_icon_holder:before {
    //font-size:1.4em;
    font-size:inherit;
    line-height:1.1;
}

.bt_bb_icon{
//margin-right:30px!important;
}

.bt_bb_icon_holder:before{
    color:white;
}


/* Klasa dla zielonych ikon Bold Builder */
.bt_bb_icon.green .bt_bb_icon_holder,
.bt_bb_icon.green .bt_bb_icon_holder span {
    color: #22C55E !important; /* Zielony kolor */
}





/* Dla ikon Font Awesome (pseudo-elementy) */
.bt_bb_icon.green .bt_bb_icon_holder[data-ico-fa]::before {
    color: #22C55E !important; /* Zielony kolor */
}

/* Dla ikon SVG */
.bt_bb_icon.green .bt_bb_icon_holder svg {
    fill: #22C55E !important; /* Zielony kolor dla SVG */
}

.teltop{
    margin-right:30px!important;
    margin-bottom:20px!important;
}







/* ========================================== */

/* 
   KlimatyzowanyDOM - CSS dla sekcji Testimonials (v8)
   Poprawka: Jasne, prawie przezroczyste strzałki
   Wklej do: Wygląd > Dostosuj > Dodatkowe CSS
*/

/* Kontener slidera */
.testimonial-slider.bt_bb_content_slider {
    max-width: 90% !important;
    margin: 0 auto !important;
}

/* Stylizacja pojedynczej opinii */
.testimonial-item {
    background: #ffffff !important;
    padding: 40px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(15, 58, 125, 0.08) !important;
    text-align: center !important;
    border: 1px solid rgba(15, 58, 125, 0.05) !important;
    margin: 20px 10px !important;
}

/* Gwiazdki */
.testimonial-stars {
    font-size: 24px !important;
    margin-bottom: 20px !important;
    color: #FBBC04 !important;
}

/* Treść cytatu */
.testimonial-quote {
    font-family: 'Roboto', sans-serif !important;
    font-style: italic !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #475569 !important;
    margin-bottom: 24px !important;
    width:90%;
    margin-left:auto;margin-right:auto;
}

/* Autor opinii */
.testimonial-author {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #0F3A7D !important;
    margin: 0 0 4px 0 !important;
}

/* Lokalizacja autora */
.testimonial-location {
    font-family: 'Roboto', sans-serif !important;
    font-size: 14px !important;
    color: #22C55E !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* POPRAWKA: Jasne, prawie przezroczyste strzałki slidera */
.testimonial-slider .slick-arrow,
.testimonial-slider .bt_bb_content_slider_arrow {
    background: rgba(255, 255, 255, 0.5) !important; /* Białe tło, 50% widoczności */
    border: 1px solid rgba(15, 58, 125, 0.1) !important;
    border-radius: 40% !important;
    width: 44px !important;
    height: 44px !important;
    line-height: 44px !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}

button.slick-arrow:before {
    color: rgba(15, 58, 125, 0.3) !important; /* Jasny granat, 30% widoczności */
}

/* Efekt hover dla strzałek */
.testimonial-slider .slick-arrow:hover,
.testimonial-slider .bt_bb_content_slider_arrow:hover {
    color: #0F3A7D !important; /* Pełny granat przy hoverze */
    //background: #ffffff !important; /* Pełne białe tło */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    transform: scale(1.1) !important;
}

/* Dostosowanie kropek slidera */
.testimonial-slider .bt_bb_content_slider_dot {
    background: #cbd5e1 !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
}

.testimonial-slider .bt_bb_content_slider_dot.active {
    background: #22C55E !important;
    width: 24px !important;
    border-radius: 10px !important;
}

/* Responsywność */
@media (max-width: 768px) {
    .testimonial-item {
        padding: 30px 20px !important;
    }
    .testimonial-quote {
        font-size: 16px !important;
    }
    .testimonial-slider .slick-arrow,
    .testimonial-slider .bt_bb_content_slider_arrow {
        display: none !important; /* Ukrywamy strzałki na mobile dla lepszej czytelności */
    }
}

.bt_bb_headline_content span b{ 
    font-family: 'Poppins', sans-serif !important;
    color:#80CFF2!important
}

.bt_bb_headline_subheadline{
    color:#80CFF2!important;
    font-size:22px;
}


/* Wymuszenie wyświetlania ikon Font Awesome */
.testimonial-stars .fa-star {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important; /* Ważne dla fa-solid */
    display: inline-block !important;
    color: #FFD700 !important; /* Twój wymarzony kolor (złoty) */
    font-size: 20px !important;
    margin-right: 3px !important;
    font-style: normal !important;
}

/* Usunięcie ewentualnych odstępów pionowych */
.testimonial-stars br {
    display: none !important;
}

.testimonial-stars {
    line-height: 1 !important;
    display: block !important;
    margin-bottom: 10px !important;
}



/* faq */

/* Kolor ikony w stanie zamkniętym */
.bt_bb_accordion_item .bt_bb_accordion_item_title:before {
    color: #0F3A7D !important; /* Twój główny niebieski */
    transition: all 0.3s ease;
}

/* Kolor ikony w stanie otwartym */
.bt_bb_accordion_item.on .bt_bb_accordion_item_title:before {
    color: #FFD700 !important; /* Złoty kolor po otwarciu */
}

/* Opcjonalnie: zmiana tła ikony, jeśli Twój styl go używa */
.bt_bb_accordion_item .bt_bb_accordion_item_title:after {
    border-color: #0F3A7D !important;
}

/* Dodanie złotej gwiazdki przed tekstem pytania */
.bt_bb_accordion_item_title {
    padding-left: 35px !important; /* Miejsce na ikonę */
    position: relative;
}

.bt_bb_accordion_item_title:after {
//    content: "\f005" !important; 
    content: "\f067" !important; 
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700 !important; 
    font-size: 16px;
}

/* Stylizacja paska pytania */
.bt_bb_accordion_item_title {
    background-color: #f8f9fa !important; /* Jasne tło */
    border-radius: 5px;
    margin-bottom: 5px !important;
    border: 1px solid #e9ecef !important;
    transition: background-color 0.3s ease;
}

/* Efekt po najechaniu myszką */
.bt_bb_accordion_item_title:hover {
    background-color: #e9ecef !important;
    color: #0F3A7D !important;
}

/* Styl dla aktywnego (otwartego) pytania */
.bt_bb_accordion_item.on .bt_bb_accordion_item_title {
    background-color: #0F3A7D !important;
    color: #ffffff !important;
}

/* Zmiana koloru ikony na biały, gdy pytanie jest otwarte (niebieskie tło) */
.bt_bb_accordion_item.on .bt_bb_accordion_item_title:before,
.bt_bb_accordion_item.on .bt_bb_accordion_item_title:after {
    color: #ffffff !important;
}



/* usuwanie dziwnego zachowania przycisków */

/* Wyłączenie zmiany tła na białe w przyciskach */
.bt_bb_button.bt_bb_style_outline a:hover {
    background-color: transparent !important; /* Blokuje białe tło */
    box-shadow: none !important; /* Usuwa ewentualny wewnętrzny cień tworzący tło */
    color: inherit !important; /* Zachowuje obecny kolor tekstu */
}

/* Zachowanie efektu uniesienia o 2px (jeśli jest realizowane przez transform) */
.bt_bb_button.bt_bb_style_outline:hover {
    transform: translateY(-2px); /* Upewniamy się, że to zostaje */
    transition: transform 0.3s ease;
}

/* Jeśli chcesz, aby ramka pozostała widoczna bez zmian */
.bt_bb_button.bt_bb_style_outline a {
    border: 1px solid currentColor !important;
    transition: all 0.3s ease;
}















/* Ograniczenie obszaru hover przycisku do jego faktycznej szerokości */
.bt_bb_button.bt_bb_align_center {
    display: flex !important;
    justify-content: center !important;
    width: auto !important; /* Zapobiega rozciąganiu na 100% */
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Alternatywne rozwiązanie, jeśli powyższe nie zadziała (wymuszenie inline-block) */
.bt_bb_button.bt_bb_align_center {
    display: table !important; /* Najbezpieczniejszy sposób na wycentrowanie elementu o szerokości auto */
    margin: 0 auto 10px auto !important;
}

/* Upewnienie się, że animacja uniesienia działa tylko na linku, a nie na całym kontenerze */
.bt_bb_button.bt_bb_style_outline:hover {
    transform: none !important; /* Wyłączamy uniesienie całego kontenera */
}

.bt_bb_button.bt_bb_style_outline a:hover {
    transform: translateY(-2px) !important; /* Przenosimy uniesienie tylko na sam przycisk (link) */
    display: inline-block !important;
    transition: transform 0.3s ease !important;
    background-color: transparent !important; /* Nadal blokujemy białe tło */
    box-shadow: none !important;
}