:root {
  --green: #39ff14;
  --green-dark: #24d80d;
  --green-glow: rgba(57, 255, 20, 0.42);
  --dark: #101915;
  --dark-2: #1f2a24;
  --text: #1f2933;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background: #f5f5f0;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  background: var(--dark);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.28);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.logo span {
  color: var(--green);
  text-shadow: 0 0 12px var(--green-glow);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s;
}

.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #081008;
  padding: 10px 18px;
  white-space: nowrap;
  box-shadow: 0 0 22px var(--green-glow);
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../img/teren-serwis-strona-glowna.png") center center / cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  padding: 90px 0;
}

.hero-content { max-width: 760px; }

.badge {
  display: inline-block;
  background: var(--green);
  color: #081008;
  border: 1px solid var(--green);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 0 22px var(--green-glow);
}

.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero p {
  font-size: 21px;
  margin-bottom: 34px;
  color: #f0fdf4;
  max-width: 660px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  padding: 15px 24px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #081008;
  box-shadow: 0 0 24px var(--green-glow);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.55);
  color: white;
  background: rgba(0,0,0,0.25);
}

.btn:hover,
.nav-cta:hover,
.mobile-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px var(--green-glow);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
}

.hero-feature {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(57,255,20,0.28);
  padding: 16px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

section { padding: 86px 0; }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--dark-2);
  margin-bottom: 12px;
}

.section-title p {
  max-width: 720px;
  margin: 0 auto;
  color: #5b6470;
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 12px 35px rgba(31,42,36,0.09);
  border: 1px solid #e8eadf;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 27px;
  color: var(--dark-2);
  margin-bottom: 16px;
}

.service-card p {
  color: #5b6470;
  margin-bottom: 22px;
}

.service-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin-bottom: 26px;
}

.service-list li::before {
  content: '✓';
  color: var(--green-dark);
  font-weight: 900;
  margin-right: 8px;
}

.service-cta {
  margin-top: auto;
  width: fit-content;
}

.dark-section {
  background: var(--dark-2);
  color: white;
}

.dark-section .section-title h2,
.dark-section .section-title p {
  color: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  background: rgba(255,255,255,0.08);
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(57,255,20,0.22);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #081008;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 0 18px var(--green-glow);
}

.step h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(31,42,36,0.08);
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.gallery-card div {
  padding: 18px;
  font-weight: 800;
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-pill {
  background: white;
  border: 1px solid rgba(57,255,20,0.35);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  color: #334155;
}

.contact-box {
  background: white;
  border-radius: 28px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  box-shadow: 0 14px 40px rgba(31,42,36,0.1);
}

.contact-box h2 {
  font-size: 38px;
  color: var(--dark-2);
  margin-bottom: 16px;
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-item {
  background: #f5f5f0;
  padding: 16px;
  border-radius: 16px;
  font-weight: 800;
}

a.contact-item:hover {
  background: rgba(57,255,20,0.16);
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #d7dccb;
  font-size: 16px;
  font-family: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  color: #5b6470;
  font-size: 14px;
}

footer {
  background: #111815;
  color: white;
  padding: 34px 0;
  text-align: center;
}

.mobile-call {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #081008;
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  font-weight: 900;
  box-shadow: 0 8px 30px var(--green-glow);
  z-index: 200;
  transition: 0.2s;
}

/* KONTAKT.HTML */

.kontakt-top-image {
  padding: 0;
  background: #000;
}

.kontakt-top-image img {
  width: 100%;
  height: auto;
  display: block;
}

.kontakt-content-section {
  background: var(--dark-2);
  color: white;
  padding: 80px 0;
}

.kontakt-content-box {
  max-width: 950px;
}

.kontakt-content-box h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.05;
  margin: 20px 0;
  color: white;
}

.kontakt-content-box p {
  font-size: 21px;
  max-width: 760px;
  color: #f0fdf4;
  margin-bottom: 32px;
}

.kontakt-phone {
  border: 1px solid rgba(57,255,20,0.65);
  color: white;
}

.kontakt-steps {
  margin-top: 40px;
  grid-template-columns: repeat(3, 1fr);
}

/* RESPONSYWNOŚĆ */

@media (max-width: 900px) {
  .nav-links { display: none; }

  .nav { gap: 12px; }

  .nav-cta {
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 80px 0;
  }

  .hero p { font-size: 18px; }

  .hero-features,
  .services-grid,
  .steps,
  .gallery,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .service-card,
  .contact-box {
    padding: 26px;
  }

  .mobile-call { display: block; }

  footer { padding-bottom: 90px; }

  .kontakt-content-section {
    padding: 55px 0;
  }

  .kontakt-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .logo { font-size: 20px; }

  .nav-cta { font-size: 13px; }

  .hero-buttons .btn,
  .service-cta {
    width: 100%;
  }
}

.hero-home {
  min-height: calc(100vh - 76px);
  padding: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.15) 100%),
    url("../img/teren-serwis-strona-glowna.png") center center / cover no-repeat;
}

.hero-home-overlay {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 90px 0;
}

.hero-home-content {
  max-width: 760px;
  color: #fff;
}

.hero-home-content h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: .95;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 1000;
  text-shadow: 0 5px 20px rgba(0,0,0,.8);
}

.hero-home-content p {
  font-size: 22px;
  max-width: 680px;
  margin-bottom: 34px;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0,0,0,.8);
}

@media (max-width: 900px) {
  .hero-home {
    min-height: 680px;
    background:
      linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.9)),
      url("../img/teren-serwis-strona-glowna.png") center top / cover no-repeat;
  }

  .hero-home-overlay {
    min-height: 680px;
    align-items: flex-end;
    padding: 260px 0 60px;
  }

  .hero-home-content p {
    font-size: 18px;
  }
}

.hero-image-top {
  padding: 0;
  background: #000;
}

.hero-image-top img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text-section {
  background: #1f2a24;
  color: white;
  padding: 70px 0;
}

.hero-text-section .hero-content {
  max-width: 850px;
}

.hero-text-section h1 {
  font-size: clamp(44px, 7vw, 80px);
  line-height: 1;
  margin-bottom: 20px;
  color: white;
}

.hero-text-section p {
  font-size: 22px;
  max-width: 760px;
  margin-bottom: 34px;
  color: #f0fdf4;
}

.oferta-image-section {
  padding: 0;
  background: #111;
}

.oferta-image-section img {
  width: 100%;
  display: block;
  height: auto;
}


.oferta-page-hero {
  padding: 0;
  background: #000;
}

.oferta-page-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.oferta-page-content {
  background: #111815;
  color: white;
}

.oferta-page-content .section-title h1 {
  font-size: clamp(42px, 7vw, 82px);
  color: white;
  margin-top: 18px;
}

.oferta-page-content .section-title p {
  color: #d7e4d7;
}

.oferta-page-content .service-card {
  border: 1px solid rgba(57,255,20,0.24);
}

.oferta-cta-box {
  margin-top: 70px;
  padding: 42px;
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(57,255,20,0.28);
  text-align: center;
}

.oferta-cta-box h2 {
  color: white;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
}

.oferta-cta-box p {
  color: #d7e4d7;
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 20px;
}

.oferta-cta-box .hero-buttons {
  justify-content: center;
}

.oferta-phone {
  border: 1px solid rgba(57,255,20,0.65);
}



.service-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: #1f2933;
  font-size: 17px;
  line-height: 1.5;
}

.service-list li::before {
  content: "✓";
  color: #39ff14;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}


.realizacje-banner {
  padding: 0;
  background: #000;
}

.realizacje-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.realizacje-page {
  background: #111815;
  color: white;
}

.realizacje-page .section-title h1 {
  font-size: clamp(42px, 7vw, 82px);
  color: white;
  margin-top: 18px;
}

.realizacje-page .section-title p {
  color: #d7e4d7;
}

.realizacje-list {
  display: grid;
  gap: 42px;
}

.realizacja-item {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 34px;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(57,255,20,0.28);
  border-radius: 28px;
  padding: 24px;
}

.realizacja-item img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.realizacja-item h2 {
  font-size: clamp(28px, 4vw, 46px);
  color: white;
  margin-bottom: 18px;
}

.realizacja-item p {
  color: #d7e4d7;
  font-size: 19px;
  margin-bottom: 26px;
}

.realizacje-cta {
  background: #111815;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.realizacje-cta h2 {
  font-size: clamp(34px, 6vw, 64px);
  margin-bottom: 14px;
}

.realizacje-cta p {
  color: #d7e4d7;
  font-size: 20px;
  margin-bottom: 28px;
}

.realizacje-cta .hero-buttons {
  justify-content: center;
}

@media (max-width: 900px) {
  .realizacja-item {
    grid-template-columns: 1fr;
  }
}


.kontakt-cta-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top, rgba(57,255,20,.08), transparent 40%),
    #0b1210;
  text-align: center;
}

.kontakt-cta-section h2 {
  color: #fff;
  font-size: clamp(38px, 6vw, 72px);
  margin-bottom: 20px;
}

.kontakt-cta-section p {
  max-width: 760px;
  margin: 0 auto 34px;
  color: #d7e4d7;
  font-size: 20px;
  line-height: 1.7;
}

.kontakt-cta-section .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .kontakt-cta-section {
    padding: 70px 0;
  }
}


.miasto-hero,
.miasto-image {
  padding: 0;
  background: #000;
}

.miasto-hero img,
.miasto-image img {
  width: 100%;
  height: auto;
  display: block;
}

.miasto-intro {
  background: #111815;
  color: white;
  padding: 80px 0;
}

.miasto-intro h1 {
  color: white;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.05;
  margin: 22px 0;
}

.miasto-intro p {
  max-width: 900px;
  color: #d7e4d7;
  font-size: 21px;
  margin-bottom: 34px;
}

.miasto-services {
  background: #f5f5f0;
}

.miasto-realizacje {
  background: #f5f5f0;
}

.miasto-faq {
  background: #111815;
  color: white;
}

.miasto-faq .section-title h2 {
  color: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(57,255,20,0.28);
  border-radius: 24px;
  padding: 28px;
}

.faq-item h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #d7e4d7;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}


.site-footer{
  background:#080d0b;
}

.footer-cities{
  padding:70px 0;
  border-top:1px solid rgba(57,255,20,.15);
}

.footer-cities-top{
  text-align:center;
  margin-bottom:32px;
}

.footer-cities-top h3{
  color:#fff;
  font-size:34px;
  margin-bottom:12px;
}

.footer-cities-top p{
  color:#d7e4d7;
  max-width:1000px;
  margin:auto;
  line-height:1.7;
}

.footer-cities-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
  gap:10px 18px;
}

.footer-cities-grid a{
  color:#d7e4d7;
  text-decoration:none;
  font-size:15px;
  line-height:1.8;
  transition:.2s;
}

.footer-cities-grid a:hover{
  color:#39ff14;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:26px 0;
  text-align:center;
}

.footer-bottom p{
  color:#aeb9ae;
  margin:6px 0;
}


.menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  .nav {
    position: relative;
    padding-right: 58px;
  }

  .menu-toggle {
    display: flex !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 900;
    color: #39ff14;
    background: transparent;
    border: 0;
    cursor: pointer;
    line-height: 1;
    z-index: 99999;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    right: 0;
    width: 100%;
    background: #101915;
    padding: 22px;
    border-radius: 0 0 18px 18px;
    flex-direction: column;
    gap: 16px;
    z-index: 99998;
    box-shadow: 0 14px 30px rgba(0,0,0,.35);
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-cta {
    margin-right: 10px;
  }
}


.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: rgba(16, 25, 21, 0.96);
  color: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 10px 35px rgba(0,0,0,.25);
  max-width: 980px;
  margin: 0 auto;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.5;
  max-width: 700px;
}

.cookie-text a {
  color: #25D366;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  border: none;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
}

.cookie-btn.accept {
  background: #25D366;
  color: #fff;
}

.cookie-btn.decline {
  background: #ffffff14;
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}



/* ===== Neon green buttons: Polityka prywatności + Akceptuję ===== */

/* Polityka prywatności */
a[href="polityka-prywatnosci.html"]{
  display:flex;
  align-items:center;
  justify-content:center;

  width:fit-content;
  min-height:56px;

  margin:42px auto 0;
  padding:0 30px;

  border-radius:999px;

  background:#39ff14;
  color:#101915 !important;

  font-size:16px;
  font-weight:700;
  line-height:1;

  text-align:center;
  text-decoration:none;

  box-shadow:
    0 0 14px rgba(57,255,20,.55),
    0 0 32px rgba(57,255,20,.22);

  transition:all .2s ease;
}

/* Przycisk Akceptuję */
.cookie-btn.accept{
  background:#39ff14 !important;
  color:#101915 !important;

  border:none;
  border-radius:999px;

  font-weight:700;

  box-shadow:
    0 0 14px rgba(57,255,20,.55),
    0 0 32px rgba(57,255,20,.22);

  transition:all .2s ease;
}

/* Hover wspólny */
a[href="polityka-prywatnosci.html"]:hover,
.cookie-btn.accept:hover{
  background:#44ff1a !important;
  color:#101915 !important;
  text-decoration:none;

  transform:translateY(-1px);

  box-shadow:
    0 0 18px rgba(57,255,20,.65),
    0 0 36px rgba(57,255,20,.28);
}

/* Mobile */
/* Mobile - Polityka prywatności */
@media (max-width:768px){
  a[href="polityka-prywatnosci.html"]{
    margin:30px auto 0;
    min-height:52px;
    padding:0 24px;
    font-size:15px;
  }
}

/* Social icons */
.social-section{
  background:
    radial-gradient(circle at top, rgba(57,255,20,.13), transparent 28%),
    linear-gradient(180deg, #08110d 0%, #030806 100%);
  padding:70px 20px 60px;
  text-align:center;
  border-top:1px solid rgba(57,255,20,.55);
  border-bottom:1px solid rgba(57,255,20,.35);
  margin:0;
}

.social-divider{
  width:100%;
  max-width:900px;
  height:1px;
  margin:0 auto 48px;
  background:linear-gradient(90deg, transparent, #39ff14, transparent);
  box-shadow:0 0 18px rgba(57,255,20,.9);
}

.social-title{
  margin:0 0 36px;
  color:#39ff14;
  font-size:18px;
  font-weight:800;
  letter-spacing:8px;
}

.social-cards{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:70px;
  flex-wrap:wrap;
}

.social-card{
  width:170px;
  text-decoration:none;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  transition:.25s ease;
}

.social-card:hover{
  transform:translateY(-6px);
}

.social-icon{
  width:120px;
  height:120px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
  border:4px solid #39ff14;
  box-shadow:
    0 0 18px rgba(57,255,20,.7),
    0 0 38px rgba(57,255,20,.3);
  font-size:58px;
  font-weight:900;
  line-height:1;
}

.social-icon i{
  line-height:1;
}

.google-icon{
  background:#fff;
  color:#4285f4;
}

.facebook-icon{
  background:#1877f2;
  color:#fff;
}

.tiktok-icon{
  background:#050505;
  color:#fff;
  text-shadow:
    -3px 0 #25f4ee,
    3px 0 #fe2c55;
}

.social-card strong{
  font-size:26px;
  font-weight:900;
  margin-bottom:8px;
  color:#fff;
}

.social-card small{
  font-size:18px;
  color:rgba(255,255,255,.7);
}

.google-opinie-btn{
  max-width:560px;
  margin:48px auto 0;
  padding:24px 34px;
  border:2px solid #39ff14;
  border-radius:18px;
  color:#fff;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  font-size:24px;
  font-weight:900;
  box-shadow:0 0 25px rgba(57,255,20,.22);
  transition:.25s ease;
}

.google-opinie-btn span{
  color:#39ff14;
  font-size:34px;
}

.google-opinie-btn:hover{
  background:#39ff14;
  color:#08110d;
  transform:translateY(-3px);
  box-shadow:0 0 35px rgba(57,255,20,.55);
}

.google-opinie-btn:hover span{
  color:#08110d;
}

/* Social mobile */
@media(max-width:768px){
  .social-section{
    padding:50px 16px;
  }

  .social-title{
    font-size:14px;
    letter-spacing:5px;
  }

  .social-cards{
    gap:34px;
  }

  .social-icon{
    width:96px;
    height:96px;
    font-size:46px;
  }

  .social-card{
    width:120px;
  }

  .social-card strong{
    font-size:22px;
  }

  .social-card small{
    font-size:16px;
  }

  .google-opinie-btn{
    font-size:18px;
    padding:20px 22px;
  }
}