/* start global classes */
:root {

  /* body bg color */
  --bodyColor: #FFFFFF;

  /* primary type color */
  --primary-color: #0E0E0E;

  /* primary brand color */
  --brand-color: #D71105;

  /* dark primary color */
  --dark-primary: #5e0c09;

  /* box color */
  --box-color: #F5F5F5;

  /* white color */
  --white: #fff;

  /* grey color */
  --grey: #686868;

  /* border radius */
  --border-radius: 10px;
}

:root {
  --color-primary: #ff6f61;
  --color-secondary: #4a90e2;
  --color-bg: #fffafa;
  --color-text-primary: #222;
  --color-text-secondary: #555;
  --max-width: 1200px;
  --transition: 0.4s ease;
  --shadow-light: rgba(255, 111, 97, 0.2);
  --shadow-dark: rgba(74, 144, 226, 0.25);
}

.banner-hero {
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.banner-hero__container {
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

:root {
  --clr-primary: #2e86de;
  --clr-secondary: #1b263b;
  --clr-accent: #ff6b6b;
  --clr-bg-light: #f9fbff;
  --clr-text: #2f3e46;
  --clr-muted: #627d98;
  --border-radius: 20px;
  --max-width: 1200px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}



/* === SECTION WRAPPER === */
section.chimney-service {
  padding: 4rem 0;
  background: var(--clr-white);
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px rgba(46, 134, 222, 0.15);
  margin-bottom: 3rem;
}

/* === FLEX GRID === */
.DH0E3Gsw3p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

/* === IMAGE BLOCK === */
.chimney-service__image {
  flex: 1 1 45%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(46, 134, 222, 0.25);
  transition: transform 0.4s ease;
}

.chimney-service__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.chimney-service__image:hover {
  transform: scale(1.05);
}

/* === TEXT BLOCK === */
.yFZr906Ooc {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  font-size: 1.1rem;
  color: var(--clr-text);
}

.yFZr906Ooc p {
  margin: 0;
}

/* === FEATURE CARDS === */
section.chimney-features {
  padding: 4rem 0;
  background: #e3f2fd;
  border-radius: var(--border-radius);
  box-shadow: 0 12px 35px rgba(46, 134, 222, 0.12);
}

.bxOJi1nzth {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.L8xz4uoSc4 {
  background: var(--clr-white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 25px rgba(46, 134, 222, 0.1);
  transition: box-shadow 0.3s ease;
}

.L8xz4uoSc4:hover {
  box-shadow: 0 14px 45px rgba(46, 134, 222, 0.25);
}

.L8xz4uoSc4 h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--clr-secondary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

:root {
  --clr-primary: #1f4068;
  --clr-secondary: #f28c28;
  --clr-bg: #f0f4f8;
  --clr-white: #fff;
  --clr-text-dark: #222;
  --clr-text-light: #555;
  --border-radius: 24px;
  --shadow-soft: 0 12px 24px rgba(31, 64, 104, 0.15);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
}


.wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 2rem 1rem;
}

/* ===== FEATURE CARDS SECTION ===== */
section.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

article.L8xz4uoSc4 {
  background: var(--clr-white);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  cursor: default;
}

article.L8xz4uoSc4:hover {
  transform: translateY(-8px);
}

article.L8xz4uoSc4 h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--clr-primary);
}

article.L8xz4uoSc4 p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--clr-text-light);
  flex-grow: 1;
}

/* ===== CTA SECTION ===== */
section.cta {
  background: var(--clr-primary);
  border-radius: var(--border-radius);
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 5rem;
  box-shadow: var(--shadow-soft);
  color: var(--clr-white);
}

section.cta h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  max-width: 720px;
  margin: 0 auto 1.75rem;
  line-height: 1.3;
}

section.cta a.btn-cta {
  background: var(--clr-secondary);
  color: var(--clr-white);
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

section.cta a.btn-cta:hover {
  background: #d97905;
}

/* ===== BLOG SECTION ===== */
section.blog {
  max-width: 1140px;
  margin: auto;
}

.aKKPtdYsHP {
  display: flex;
  gap: 2.5rem;
  flex-wrap: nowrap;
  justify-content: center;
}

article.blog-post {
  background: var(--clr-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  flex: 1 1 520px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

article.blog-post:hover {
  box-shadow: 0 20px 48px rgba(31, 64, 104, 0.3);
}

article.blog-post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

article.blog-post .content {
  padding: 1.5rem 1.75rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

article.blog-post h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--clr-primary);
}

article.blog-post p {
  color: var(--clr-text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  section.cta h2 {
    font-size: 1.6rem;
    padding: 0 1rem;
  }

  section.features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .aKKPtdYsHP {
    flex-direction: column;
    align-items: center;
  }

  article.blog-post {
    max-width: 100%;
  }
}

.L8xz4uoSc4 p {
  color: var(--clr-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* === REVERSE LAYOUT FOR LAST SECTION === */
section.chimney-service.wozwAhNmp5 .DH0E3Gsw3p {
  flex-direction: row-reverse;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .DH0E3Gsw3p {
    flex-direction: column;
  }

  .chimney-service__image,
  .yFZr906Ooc {
    flex: 1 1 100%;
  }
}

/* Text content */
.banner-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
  transform: translateY(25px);
  animation-delay: 0.3s;
}

.banner-hero__content h1.xY4sq0lWmm-1 {
  font-size: clamp(1.8rem, 1.8vw, 1.8rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: 1.15;
  text-shadow:
    1px 1px 4px var(--shadow-light),
    0 0 12px var(--color-primary);
}

.banner-hero__content h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: -0.25rem;
  text-shadow: 0 0 10px var(--color-primary);
}

.banner-hero__content p.body-1 {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  filter: drop-shadow(1px 1px 1px var(--shadow-dark));
}

.banner-hero__btn {
  align-self: start;
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow:
    0 6px 15px var(--shadow-light),
    0 0 25px var(--color-primary);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  user-select: none;
  display: inline-block;
}

.banner-hero__btn:hover,
.banner-hero__btn:focus {
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px var(--shadow-light),
    0 0 45px var(--color-primary);
  outline: none;
}

/* Image container */
.banner-hero__image {
  width: 100%;
  border-radius: 24px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.12),
    0 0 25px var(--color-secondary);
  overflow: hidden;
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
  transform: translateY(25px);
  animation-delay: 0.6s;
}

.banner-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
  will-change: transform;
}

.banner-hero__image:hover img,
.banner-hero__image:focus-within img {
  transform: scale(1.05);
}

/* Animate keyframes */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accent shapes */
.banner-hero::before,
.banner-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.banner-hero::before {
  width: 320px;
  height: 320px;
  background: var(--color-primary);
  top: -100px;
  left: -80px;
}

.banner-hero::after {
  width: 480px;
  height: 480px;
  background: var(--color-secondary);
  bottom: -140px;
  right: -120px;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-hero__content {
    animation-delay: 0.15s;
  }

  .banner-hero__image {
    animation-delay: 0.3s;
  }
}

@media (max-width: 480px) {
  .banner-hero {
    padding: 2.5rem 1rem;
  }

  .banner-hero__content h1.xY4sq0lWmm-1 {
    font-size: clamp(1.4rem, 4vw, 1.9rem);
  }

  .banner-hero__content h2 {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }

  .banner-hero__content p.body-1 {
    max-width: 100%;
    font-size: 1rem;
  }

  .banner-hero__btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem 0;
    border-radius: 20px;
  }
}

.ob-header {
  background: #ffffff;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 2000;
  border-bottom: 2px solid #e2e8f0;
}

.UvNd9XKQAN {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0ea5e9;
}

.ob-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.ob-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.3s ease;
}

.ob-nav a:hover {
  color: #0ea5e9;
}

/* Burger */
.ob-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2101;
}

.ob-burger span {
  width: 28px;
  height: 3px;
  background: #0ea5e9;
  border-radius: 2px;
  transition: 0.3s;
}

#ob-menu-toggle {
  display: none;
}

/* Overlay */
.ob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 2100;
}

#ob-menu-toggle:checked~.ob-overlay {
  opacity: 1;
  visibility: visible;
}

/* Mobile menu full screen */
.ob-mobile-menu {
  position: fixed;
  inset: 0;
  background: #f8fafc;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 2200;
  padding-top: 3rem;
}

.ob-mobile-menu ul {
  list-style: none;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ob-mobile-menu a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
}

.ob-mobile-menu a:hover {
  color: #0ea5e9;
}

#ob-menu-toggle:checked~.ob-mobile-menu {
  transform: translateX(0);
}

/* Close button in mobile */
.dm2ElSTJnM {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #0ea5e9;
  cursor: pointer;
}

/* Burger to cross animation */
#ob-menu-toggle:checked+.ob-burger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

#ob-menu-toggle:checked+.ob-burger span:nth-child(2) {
  opacity: 0;
}

#ob-menu-toggle:checked+.ob-burger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 768px) {
  .ob-nav {
    display: none;
  }

  .ob-burger {
    display: flex;
  }
}

:root {
  --color-bg: #121212;
  --color-text-light: #f0f0f0;
  --color-accent: #00bcd4;
  --color-link-hover: #00e5ff;
  --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-section {
  background-color: var(--color-bg);
  color: var(--color-text-light);
  padding: 48px 20px 24px;
  font-family: var(--font-sans);
  display: flex;
  justify-content: center;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
}

.PAVXTu1AP3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-info {
  flex: 1 1 320px;
  min-width: 280px;
}

.footer-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--color-accent);
}

.gWOWv87Wms {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}

.footer-address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-link {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--color-link-hover);
  outline: none;
}

.footer-nav {
  flex: 1 1 280px;
  min-width: 280px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px 24px;
}

.footer-menu-link {
  color: var(--color-text-light);
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.footer-menu-link:hover,
.footer-menu-link:focus {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  outline: none;
}

.AcbYPFIh3H {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.NgMEfuNm1l {
  display: inline-block;
  width: 40px;
  height: 40px;

}

.NgMEfuNm1l:hover,
.NgMEfuNm1l:focus {
  transform: scale(1.2);
  outline: none;
}

.social-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;

}

.bQF5ua4ZdD {
  border-top: 1px solid #333;
  padding-top: 16px;
  text-align: center;
}

.footer-section a {
  color: var(--color-text-light);
}

.footer-copy {
  font-size: 0.9rem;
  color: #999;
  user-select: none;
}

/* Адаптивність */
@media (max-width: 768px) {
  .PAVXTu1AP3 {
    flex-direction: column;
    gap: 32px;
  }

  .AcbYPFIh3H {
    justify-content: center;
    margin-top: 12px;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-color);
  background-color: var(--bodyColor);
  text-align: left;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

::selection {
  color: var(--white);
  background-color: var(--primary-color);
}

.grey-text {
  color: var(--grey, #cecece) !important;
}

.b-radius {
  border-radius: var(--border-radius);
}

.xY4sq0lWmm-1,
.xY4sq0lWmm-2,
.xY4sq0lWmm-3,
.xY4sq0lWmm-4 {
  color: var(--primary-color);
  text-transform: capitalize;
  line-height: auto;
}

.xY4sq0lWmm-1 {
  font-size: 48px;
  font-weight: bold;
  line-height: normal;
}

.xY4sq0lWmm-2 {
  font-size: 36px;
  font-weight: bold;
}

.xY4sq0lWmm-3 {
  font-size: 24px;
  font-weight: 600;
}

.xY4sq0lWmm-4 {
  font-size: 20px;
  font-weight: 600;
}


.body-1 {
  font-size: 18px;
  font-weight: 300;
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.body-2 {
  font-size: 16px;
  font-weight: 300;
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.breadcrubs .content,
.breadcrubs .content .container {
  background-color: var(--box-color) !important;
  color: var(--primary-color) !important;
}

.breadcrubs .content h1 {
  color: var(--primary-color);
}

.breadcrubs .content p {
  color: var(--grey);
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

input,
textarea {
  font-family: 'Outfit', sans-serif !important;
}

.gap-8 {
  gap: 8px;
}

.gap-16 {
  gap: 16px;
}

.gap-32 {
  gap: 32px;
}

.gap-64 {
  gap: 64px;
}

.bg-box {
  background-color: var(--color-accent);
  ;
}

@media (max-width: 990px) {
  .xY4sq0lWmm-1 {
    font-size: 36px;
  }

  .xY4sq0lWmm-2 {
    font-size: 24px;
  }

  .xY4sq0lWmm-3 {
    font-size: 18px;
  }

  .body-1 {
    font-size: 16px;
  }

  .body-2 {
    font-size: 14px;
  }

  .gap-8 {
    gap: 4px;
  }

  .gap-16 {
    gap: 8px;
  }

  .gap-32 {
    gap: 16px;
  }

  .padding-32 {
    padding: 16px;
  }

  .padding-16 {
    padding: 8px;
  }

  .padding-8 {
    padding: 4px;
  }

  .icon-lg {
    font-size: 48px;
  }

  .icon-md {
    font-size: 32px;
  }

  .icon-sm {
    font-size: 26px;
  }

  .section {
    padding-block: 3rem;
  }

}

/* Container and wrapper */
.connect-block {
  background: linear-gradient(135deg, #fff8f0 0%, #a2e0f3 100%);
  padding: 3rem 1rem;
  font-family: 'Poppins', sans-serif;
  color: #3a3a3a;
}

.connect-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;

}

@media (max-width: 480px) {
  .connect-wrapper {
    flex-direction: column;
    padding: 1rem;
  }

  .info-panel {
    padding: 1.2rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(255, 147, 38, 0.15);
    margin-bottom: 2rem;
  }

  .info-title {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .info-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .contact-details li {
    font-size: 0.95rem;
    gap: 0.6rem;
  }

  .icon {
    font-size: 1.3rem;
  }

  .contact-link {
    word-break: break-word;
  }

  .WJTGCpRJ74 {
    display: flex;
    flex-direction: column;
  }

  .geqv6hVf5j {
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.15);
  }

  .input-field {
    font-size: 1rem;
    padding: 0.85rem 1rem;
  }

  .submit-btn {
    width: 100%;
    font-size: 1rem;
    padding: 1rem 0;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(255, 76, 0, 0.5);
  }

  .map-frame {
    min-height: 250px;
    margin-top: 1.8rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(255, 147, 38, 0.15);
  }
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 1.3rem;
  font-size: 1.1rem;
  gap: 1rem;
}

.icon {
  font-size: 1.6rem;
  color: var(--color-accent);
}

.contact-link {
  color: #4a2c00;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-link:hover,
.contact-link:focus {
  color: #ff4c00;
  outline: none;
}

/* Form & Map wrapper */
.WJTGCpRJ74 {
  flex: 2 1 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Contact Form */
.geqv6hVf5j {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgb(255 147 38 / 0.15);
}

.input-field {
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 2px solid var(--color-accent);
  font-size: 1rem;
  font-family: inherit;
  color: #3a3a3a;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.input-field::placeholder {
  color: #d18f37;
}

.input-field:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent)aa;
}

.submit-btn {
  background-color: var(--color-accent);
  color: white;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgb(255 122 0 / 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover,
.submit-btn:focus {
  background-color: #ff4c00;
  box-shadow: 0 10px 25px rgb(255 76 0 / 0.6);
  outline: none;
}

/* Map styling */
.map-frame {
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  box-shadow: 0 10px 30px rgb(255 147 38 / 0.2);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 950px) {
  .WJTGCpRJ74 {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 300px;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .info-panel {
    padding: 1.5rem 1.8rem;
  }

  .info-title {
    font-size: 1.75rem;
  }

  .info-desc {
    font-size: 1rem;
  }

  .submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }
}

a {
  text-decoration: none;
  text-transform: capitalize;
}

.w-fit {
  width: fit-content;
}

.padding-32 {
  padding: 32px;
}

.padding-16 {
  padding: 16px;
}

.padding-8 {
  padding: 8px;
}

.icon-lg {
  font-size: 48px;
}

.icon-md {
  font-size: 32px;
}

.icon-sm {
  font-size: 24px;
}

p {
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.section {
  padding-block: 6rem;
}

.unique-text {
  color: var(--brand-color);
}

input,
textarea {
  border: 0;
  outline: 0;
  color: var(--grey);
  background-color: var(--box-color);
  border-radius: var(--border-radius);
}

/* start buttons style */
.btn,
.btn-outline {
  background-color: var(--brand-color);
  color: var(--white);
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  border-radius: var(--border-radius);
  padding: 10px 28px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  text-transform: capitalize;
  align-items: center;
  text-align: center;
  letter-spacing: .5px;
  outline: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  z-index: 1;
  transition: color 300ms ease-in-out;
}


.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: .5px solid var(--brand-color);
}

.btn:hover {
  color: var(--primary-color);
  border: .5px solid var(--brand-color);
}

.learn-more {
  text-transform: capitalize;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: 'Outfit', sans-serif;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.learn-more i {
  font-size: 22px;
  margin-left: 8px;
}

.learn-more:hover {
  letter-spacing: 1.5px;
  transition: all .5s;
  color: var(--grey);
}

/* end main button style */


ul {
  list-style: none;
}

img {
  width: 100%;
}


/* end global classes */

/* ==== start  preloader style  ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bodyColor);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader__content svg {
  width: 200px;
  height: 200px;
}

:root {
  --hue: 223;
  --bg: hsl(var(--hue), 10%, 90%);
  --fg: hsl(var(--hue), 10%, 10%);
  /* font-size: calc(16px + (24 - 16) * (100vw - 320px) / (1280 - 320)); */
}

main {
  padding: 1.5em 0;
}

.ap {
  width: 8em;
  height: 16em;
}

.ap__ring {
  stroke: hsla(var(--hue), 10%, 10%, 0.15);
  transition: stroke 0.3s;
}

.ap__worm1,
.ap__worm2 {
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.ap__worm1 {
  animation-name: worm1;
}

.ap__worm2 {
  animation-name: worm2;
  visibility: hidden;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(var(--hue), 10%, 10%);
    --fg: hsl(var(--hue), 10%, 90%);
  }

  .ap__ring {
    stroke: hsla(var(--hue), 10%, 90%, 0.1);
  }
}

/* Animtions */
@keyframes worm1 {
  from {
    animation-timing-function: ease-in-out;
    stroke-dashoffset: -87.96;
  }

  20% {
    animation-timing-function: ease-in;
    stroke-dashoffset: 0;
  }

  60% {
    stroke-dashoffset: -791.68;
    visibility: visible;
  }

  60.1%,
  to {
    stroke-dashoffset: -791.68;
    visibility: hidden;
  }
}

@keyframes worm2 {

  from,
  60% {
    stroke-dashoffset: -87.96;
    visibility: hidden;
  }

  60.1% {
    animation-timing-function: cubic-bezier(0, 0, 0.5, 0.75);
    stroke-dashoffset: -87.96;
    visibility: visible;
  }

  77% {
    animation-timing-function: cubic-bezier(0.5, 0.25, 0.5, 0.88);
    stroke-dashoffset: -340;
    visibility: visible;
  }

  to {
    stroke-dashoffset: -669.92;
    visibility: visible;
  }
}

/* ==== end  preloader style  ===== */

/* ======== start scroll-to-top button style  =========== */

#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
}

#progress i {
  color: var(--grey);
  font-size: 20px;
}

#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  border-radius: 50%;
  display: grid;
  background-color: var(--bodyColor);
  place-items: center;
  font-size: 35px;
  color: var(--brand-color);
}

/* ======== end scroll-to-top button style  =========== */

/*================== start navbar section ==================*/

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
  border: none;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: 100%;
}

.header .bg-box {
  background-color: #f5f5f596;
  backdrop-filter: blur(8px);
}



.navbar {
  background-color: rgba(255, 255, 255, 0.678);
  backdrop-filter: blur(8px);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  width: 100%;
}


.navbar i {
  font-size: 20px;
  color: var(--grey);
}

.navbar>* {
  z-index: 999;
}

.navbar .logo {
  width: 9rem;
}

.navbar ul li a {
  font-weight: 600;
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--primary-color) !important;
}

.navbar i {
  font-size: 24px;
  color: var(--grey);
  z-index: 999 !important;
}



/*================== End navbar section ==================*/

/*================== start hero section ==================*/
.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}


.hero .xY4sq0lWmm-hero {
  font-size: 56px;
}


@media (max-width: 990px) {
  .hero .xY4sq0lWmm-hero {
    font-size: 40px;
  }
}

@media (max-width: 720px) {
  .hero .xY4sq0lWmm-1 {
    font-size: 30px;
  }
}

/*================== end hero section =====================*/

.classes .overlay {
  background-color: var(--box-color);
  border-radius: var(--border-radius);
  width: 400px;
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 10%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.classes .img {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  z-index: 2;
  width: 100%;
}

.classes .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.classes .img:hover .overlay {
  opacity: 1;
}



.JzeOQNZlqN .text {
  position: relative;
  color: var(--white);
  z-index: 2;
}

.JzeOQNZlqN .bg-box {
  position: relative;
  height: 400px;
  border-radius: var(--border-radius);
}

.JzeOQNZlqN .text .xY4sq0lWmm-3 {
  color: var(--bodyColor);
}

.JzeOQNZlqN .text p {
  color: var(--box-color);
}

.JzeOQNZlqN .bg-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: var(--dark-primary);
  border-radius: var(--border-radius);
}

.JzeOQNZlqN .text .img {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.cta .container {
  background: url('../img/ihSyd8sxYs.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius);
}

.cta .container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 12, 0.5);
  border-radius: var(--border-radius);
}

.cta .container h2 {
  color: var(--white);
  z-index: 9;
}

/*============== Start testimonials section ==========*/

.JzeOQNZlqN i {
  font-size: 20px;
  color: rgb(223, 223, 0);
}

.JzeOQNZlqN .img {
  width: 55px;
  height: 55px;
}

/*============== End testimonials section ==========*/


/*============== start FAQ section ==========*/


.faq .btn {
  padding: 0;
  margin: 0;
  width: 100%;
  background-color: transparent !important;
  border: none !important;
}

.rotate-icon {
  transition: transform 0.3s ease-in-out;
}

.rotate-icon.rotated {
  transform: rotate(180deg);
}

/*============== End FAQ section ==========*/

/*============== Start contact section ==========*/

.contact input,
.contact textarea {
  background-color: var(--box-color);
}

.contact .container {
  background-color: var(--white);
  border-radius: var(--border-radius);
}


.done-msg {
  color: var(--white);
  font-family: 'Outfit', 'sans serif';
}

.toast-success {
  background-color: #0d9700 !important;
  opacity: 1 !important;
}

.toast-error {
  background-color: #8b0500 !important;
  opacity: 1 !important;
}

.toast {
  border-radius: var(--border-radius) !important;
  color: var(--bodyColor) !important;
  font-family: 'Outfit', sans-serif;
  box-shadow: none !important;
}

.contact-map {
  width: 100%;
  height: 300px;
}

/*============== End contact section ==========*/

/*============== start Footer section ==========*/

.footer {
  background-color: var(--dark-primary);
  color: var(--bodyColor);
}

.footer p {
  color: var(--bodyColor);
}

.footer h2 {
  color: var(--bodyColor);
}

.footer-link {
  font-size: 16px;
  color: var(--grey);
  font-family: 'Outfit', sans-serif;
}

.footer a {
  font-size: 16px;
  font-family: 'Outfit', sans-serif;
  color: var(--bodyColor);
}


.copy {
  font-size: 14px;
  color: var(--bodyColor);
}

/*============== End Footer section ==========*/

/* Modern Service Card Styles */
.service-card,
.vS1uk1moUc,
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(30, 41, 59, 0.10), 0 1.5px 6px 0 rgba(30, 41, 59, 0.08);
  transition: transform 0.25s cubic-bezier(.4, 2, .6, 1), box-shadow 0.25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover,
.vS1uk1moUc:hover,
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 48px 0 rgba(30, 41, 59, 0.18), 0 3px 12px 0 rgba(30, 41, 59, 0.12);
}

.service-card img,
.vS1uk1moUc img,
.testimonial-card img.eZMJNLnZTZ {
  border-radius: 16px 16px 0 0;
  object-fit: cover;

}

/* Контейнер секції */
.aC417QEfRg {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* Блок контенту */
.chimney-vision__block {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: linear-gradient(135deg, #f0f5f9 0%, #d9e2ec 100%);
  padding: 2.5rem 3rem;
  border-radius: 24px;
  box-shadow: 0 12px 24px rgba(44, 62, 80, 0.12);
}

/* Зворотній порядок для другого блоку */
.ryHNTQfWf8 {
  flex-direction: row-reverse;
}

/* Текстовий контейнер */
.NI7a4FlfaM {
  flex: 1;
}

/* Абзаци тексту */
.chimney-vision__text {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #1f2937;
  margin-bottom: 1.4rem;
}

/* Контейнер для зображень */
.chimney-vision__image-container {
  flex: 1;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

/* Саме зображення */
.chimney-vision__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.5s ease;
}

/* Легка анімація при наведенні */
.chimney-vision__block:hover .chimney-vision__image {
  transform: scale(1.05);
}

/* Адаптивність */
@media (max-width: 992px) {

  .chimney-vision__block,
  .ryHNTQfWf8 {
    flex-direction: column !important;
  }

  .chimney-vision__image-container {
    width: 100%;
    max-height: 320px;
    margin-bottom: 1.8rem;
  }
}

.service-card .card-body,
.vS1uk1moUc .card-body,
.testimonial-card .card-body {
  padding: 24px 20px 20px 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.service-card .price,
.vS1uk1moUc .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0ea5e9;
  margin-bottom: 12px;
}

.btn-modern {
  background: linear-gradient(90deg, #0ea5e9 0%, var(--color-accent) 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(14, 165, 233, 0.10);
  transition: background 0.2s, transform 0.2s;
  margin-top: 10px;
}

.btn-modern:hover {
  background: linear-gradient(90deg, #2563eb 0%, #0ea5e9 100%);
  color: #fff;
  transform: scale(1.04);
}

.hOBZXr0jZf {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.eZMJNLnZTZ {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0ea5e9;
  margin-right: 12px;
}

@media (max-width: 768px) {

  .service-card img,
  .vS1uk1moUc img,
  .testimonial-card img.eZMJNLnZTZ {
    height: 100px;
  }

  .service-card .card-body,
  .vS1uk1moUc .card-body,
  .testimonial-card .card-body {
    padding: 16px 10px 14px 10px;
  }
}