/*!*************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/styles.css ***!
  \*************************************************************************/
:root {
  /* ===== Global Header Settings ===== */
  --font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-family2: "Times New Roman", Times, serif;

  /* ===== Header Layout ===== */
  --topbar-h: 0px;
  --header-h: 130px;
  --header-padding-x: 0rem;
  --nav-padding-x: 280px;

  /* ===== Colors ===== */
  --header-bg: #fff;
  --header-border: #eee;
  --link-color: #333;
  --link-hover: #0077ff;

  /* ===== Contact Bar ===== */
  --contact-font-size: 1.4rem;
  --phone-icon-size: 30px;

  /* ===== Social Icons ===== */
  --social-icon-size: 28px;
  --social-gap: 12px;

  /* ===== Navigation ===== */
  --nav-gap: 2.5rem;
  --nav-font-size: 1.05rem;

  /* ===== Responsive ===== */
  --mobile-breakpoint: 768px;

  /* ===== Features Section ===== */
  --accent: #0077ff;
  --ink: #1f2937;
  --muted: #6b7280;
  --bg: #1e1e1e;;

  /* ===== Hero Section ===== */
  --bg-start: #0e1421;
  --bg-end: #0a0f1a;
  --glow-warm: 255,156,66;
  --glow-cool: 0,119,255;

  /* ===== Footer ===== */
  --footer-bg-start: #0e1421;
  --footer-bg-end: #0a0f1a;
  --footer-fg: #e5e7eb;
  --footer-muted: #a8b0be;
  --footer-accent: #5aa0ff;
  --footer-border: rgba(255,255,255,.08);
}

/* ================= Responsive Root Adjustments ================= */
@media (max-width: 1900px) { :root { --nav-padding-x: 170px; } }
@media (max-width: 1700px) { :root { --nav-padding-x: 100px; } }
@media (max-width: 1200px) { :root { --nav-padding-x: 0px; } }
@media (max-width: 900px)  { :root { --nav-padding-x: 0px; } }
@media (max-width: 600px)  { :root { --nav-padding-x: 20px; } }

/* ================= Base ================= */
* { font-family: var(--font-family); }
body, ul { margin: 0; padding: 0; }
ul { list-style: none; }

/* ================= Header ================= */
.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  padding: var(--topbar-h) var(--header-padding-x) 0 var(--header-padding-x);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative;
}

.contact-number-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.2rem;
  background: var(--header-bg);
  font-weight: 400;
  font-size: var(--contact-font-size);
  z-index: 1000;
}

.contact-number-container a { color: var(--link-hover); text-decoration: none; }
.contact-number-container a:hover { text-decoration: underline; }

.phone-icon {
  width: var(--phone-icon-size);
  height: var(--phone-icon-size);
  margin-right: .4rem;
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: 1fr 1.5fr;
  align-items: center;
  flex: 1;
  padding: 0 var(--nav-padding-x);
}

.logo { grid-row: 1 / 3; }
.logo img { height: calc(var(--header-h) - 10px); display: block; }

.header-contact { justify-self: end; align-self: start; display: flex; }

.social-icons { display: flex; gap: var(--social-gap); }
.social-link { height: var(--social-icon-size); width: var(--social-icon-size); }

.nav-links {
  display: flex;
  gap: var(--nav-gap);
  align-items: center;
  justify-self: end;
  margin-top: 35px;
}

.nav-links a {
  font-family: var(--font-family2);
  text-decoration: none;
  font-weight: 400;
  font-size: calc(var(--nav-font-size) * 1.2);
  color: var(--link-color);
  position: relative;
  transition: color 0.3s ease;
}


.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--link-hover);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--link-hover); }
.nav-links a:hover::after { width: 100%; }

@media (max-width: 768px) {
  .contact-number-container { display: none; }
  .site-header { padding-top: 0; }
}

/* ================= Mobile Header ================= */
.desktop-header { display: block; }
.mobile-header { display: none; }

@media (max-width: 1100px) {
  .desktop-header { display: none; }
  .mobile-header {
    display: flex;
    flex-direction: column;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    padding: 0.8rem 1.2rem;
  }
  .mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .mobile-logo { height: 60px; }
  .mobile-phone {
    font-weight: 600;
    color: var(--link-hover);
    text-decoration: none;
  }
  .mobile-burger {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--link-color);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid #ececec;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 999;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav ul { list-style: none; margin: 0; padding: 0; }
  .mobile-nav li { border-bottom: 1px solid #f2f2f2; }
  .mobile-nav li:last-child { border-bottom: none; }
  .mobile-nav a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .mobile-nav a:hover { background: #f9f9f9; color: var(--link-hover); }
  .mobile-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .mobile-social img { width: 28px; height: 28px; }
}

/* ================= 3 Card Section ================= */
.hp-features {
  background: radial-gradient(120% 90% at 20% 15%, rgba(var(--glow-warm), .14) 0%, rgba(var(--glow-warm), .06) 28%, transparent 60%), radial-gradient(120% 90% at 80% 85%, rgba(var(--glow-cool), .16) 0%, rgba(var(--glow-cool), .05) 30%, transparent 60%), linear-gradient(180deg, var(--bg-start), var(--bg-end));
  padding: 64px 20px;
}

.hp-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hp-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 80%;
}

.hp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
  border-color: rgba(0,119,255,.25);
}

.hp-icon {
  width: 96px;
  height: 96px;
  display: block;
  margin: 6px auto 14px;
  object-fit: contain;
}

.hp-card-title {
  margin: 10px 0 8px;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .2px;
}

.hp-card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 1000px) {
  .hp-features-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hp-features-inner { grid-template-columns: 1fr; }
  .hp-card { padding: 24px 18px; }
  .hp-icon { width: 84px; height: 84px; }
}

/* ================= Hero Duo Section ================= */
.hero-duo {
  position: relative;
  min-height: 833px;
  display: grid;
  place-items: center;
  padding: 40px 20px 0px;
  color: #fff;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 15%, rgba(var(--glow-warm),.14) 0%, rgba(var(--glow-warm),.06) 28%, transparent 60%),
    radial-gradient(120% 90% at 80% 85%, rgba(var(--glow-cool),.16) 0%, rgba(var(--glow-cool),.05) 30%, transparent 60%),
    linear-gradient(180deg, var(--bg-start), var(--bg-end));
}

.hero-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  width: min(92vw, 1200px);
}

.tile {
  border-radius: 24px;
  overflow: hidden;
  background:#0b0f18;
  box-shadow: 0 22px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}
.tile::before {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(255,255,255,.08), transparent 60%);
  pointer-events:none;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease, filter .6s ease;
  filter: saturate(1.02) contrast(1.02);
}
.tile:hover img { transform: scale(1.06); filter: saturate(1.08) contrast(1.06); }

@media (max-width: 900px) {
.tile img {
  width: 320px;
  height: 320px;
}
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 20px;
  pointer-events: none;
}
.hero-overlay h1 {
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 4.5rem);
  margin: 0 0 34rem;
  color: rgba(255,255,255,.96);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-tagline {
  letter-spacing: .08em;
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.92);
}

/* ================= Footer ================= */
.site-footer {
  background: #121212;;
  color: var(--footer-fg);
  padding: 48px 20px 16px;
  border-top: 1px solid var(--footer-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.footer-block h4 {
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 .6rem;
}

.footer-list { list-style:none; margin:0; padding:0; }
.footer-list li+li { margin-top:.35rem; }
.footer-list a { color:var(--footer-fg); text-decoration:none; transition:color .2s ease,opacity .2s ease; }
.footer-list a:hover { color:var(--footer-accent); }

.footer-address { font-style:normal; color:var(--footer-muted); line-height:1.6; }
.footer-block p { color:var(--footer-muted); margin:0; }

.footer-bottom {
  max-width:1200px;
  margin:0 auto;
  padding-top:16px;
  border-top:1px solid var(--footer-border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.footer-brand { font-weight:600; letter-spacing:.04em; opacity:.9; }

.privacy-link {
  color:var(--footer-fg);
  text-decoration:none;
  padding:8px 12px;
  border:1px solid var(--footer-border);
  border-radius:10px;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.privacy-link:hover {
  background:rgba(255,255,255,.06);
  color:var(--footer-accent);
  border-color:rgba(90,160,255,.35);
}

.footer-meta {
  max-width:1200px;
  margin:10px auto 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--footer-muted);
}
.footer-meta small { font-size:.72rem; opacity:.85; }
.footer-meta .credit a {
  color:var(--footer-muted);
  text-decoration:none;
  border-bottom:1px dotted rgba(255,255,255,.2);
}
.footer-meta .credit a:hover {
  color:var(--footer-accent);
  border-bottom-color:transparent;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
  .main { max-width: 760px !important; }
  .hero-overlay h1 {
    font-weight: 300;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 4.5rem);
    margin: 50px 0 10rem;
    color: rgba(255,255,255,.96);
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
  }
  .hero-tiles {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: min(92vw, 1200px);
  }
  .hero-tagline {
    margin-top: 35rem;
  }
}



/*!********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/installations.css ***!
  \********************************************************************************/
/* ================= INSTALL HERO SECTION ================= */
.install-hero {
    background:#121212;
    padding:60px 6vw;
}

.install-hero-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    max-width:1250px;
    margin:auto;
}

.install-hero-text {
    flex:1;
}

.btn-primary{
    display: inline-block;
    margin-top: 10px;
    background: #0a84ff;
    color: #ffffff;
    padding: 16px 42px;
    font-size: 1.2rem;
    font-weight: 400;
    border-radius: 12px;
    text-decoration: none;
    transition: .25s ease;
    box-shadow: 0 6px 25px rgba(10, 132, 255, .25);
}


.install-hero-text h1 {
    font-size:3.1rem;
    font-weight:400;
    margin-bottom:12px;
    color:#ffffff;
}

.install-hero-text p {
    font-size:1.18rem;
    line-height:1.7;
    color:#cfcfcf;
    margin-bottom:16px;
    max-width:650px;
}

.install-btn {
    font-size:1.25rem;
    padding:16px 40px;
    border-radius:10px;
    font-weight:400;
}

/* Image */
.install-hero-img {
    flex:1;
}

.install-hero-img img {
    width:100%;
    border-radius:18px;
    box-shadow:0 12px 32px rgba(0,0,0,.6);
}

/* Responsive */
@media(max-width:900px){
    .install-hero-inner {
        flex-direction:column;
        text-align:center;
    }
    .install-hero-text h1 {font-size:2.5rem;}
    .install-btn {font-size:1.1rem;}
}

/* ================= INSTALLED FIREPLACE OPTIONS ================= */
.install-types {
    background:#121212;
    padding: 0 6vw;
    padding-top:65px;
    padding-bottom:65px;
}

.install-types-inner {
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:50px;
}

.install-type-block {
    background:#1e1e1e;
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:0 6px 28px rgba(0,0,0,0.6);
}

.install-type-block h2 {
    font-size:2rem;
    color:#ffffff;
    font-weight: 400;
    margin-bottom:15px;
}

.install-type-block p {
    font-size:1.2rem;
    line-height:1.7;
    color:#cfcfcf;
    margin-bottom:16px;
}

.time-estimate {
    display:block;
    margin-top:14px;
    font-size:1.1rem;
    font-weight:400;
    color:#0a84ff;
}

/* Responsive */
@media(max-width:900px){
    .install-types-inner {grid-template-columns:1fr;}
    .install-type-block {padding:30px;}
    .install-type-block h2 {font-size:1.7rem;}
}

/* ================= RECONSTRUCTION PROJECTS ================= */
.rebuild-section {
    background:#181818;
    padding:100px 6vw;
}

.rebuild-inner {
    max-width:1250px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

.rebuild-text {
    flex:1;
}

.rebuild-text h2 {
    font-size:2.3rem;
    font-weight:400;
    color:#ffffff;
    margin-bottom:14px;
}

.rebuild-text p {
    font-size:1.2rem;
    line-height:1.7;
    color:#cfcfcf;
    margin-bottom:18px;
}

.rebuild-time {
    font-weight:400;
    color:#0a84ff;
    font-size:1.15rem;
    margin-top:8px;
}

/* CTA Button */
.rebuild-cta-btn {
    display:inline-block;
    margin-top:10px;
    background:#0a84ff;
    color:#ffffff;
    padding:16px 42px;
    font-size:1.2rem;
    font-weight:400;
    border-radius:12px;
    text-decoration:none;
    transition:.25s ease;
    box-shadow:0 6px 25px rgba(10,132,255,.25);
}

.rebuild-cta-btn:hover {
    background:#0066cc;
    transform:translateY(-2px);
}

/* Image */
.rebuild-img {
    flex:1;
}

.rebuild-img img {
    width:100%;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.6);
}

/* Responsive */
@media(max-width:900px) {
    .rebuild-inner {
        flex-direction:column;
        text-align:center;
    }
    .rebuild-cta-btn {font-size:1.1rem;}
}

/* ================= ECO BURN SECTION ================= */
.eco-burn-section {
    background:#181818;
    padding: 0 6vw;
    padding-top: 30px;
    padding-bottom: 60px;
}

.eco-burn-inner {
    max-width:1250px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

.eco-burn-text {
    flex:1;
}

.eco-burn-text h2 {
    font-size:2.4rem;
    font-weight:400;
    color:#ffffff;
    margin-bottom:18px;
}

.eco-burn-text p {
    font-size:1.22rem;
    line-height:1.75;
    color:#cfcfcf;
    margin-bottom:20px;
}

.eco-burn-img {
    flex:1;
}

.eco-burn-img img {
    width:100%;
    border-radius:18px;
    box-shadow:0 12px 34px rgba(0,0,0,.6);
}

/* Mobile Responsive */
@media(max-width:900px){
    .eco-burn-inner {
        flex-direction:column;
        text-align:center;
    }
    .eco-burn-text h2 {
        font-size:2rem;
    }
}

/* ================= INSTALLATIONS CAROUSEL SECTION ================= */

.installations-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.installations-carousel {
  position: relative;
  margin-bottom: 32px;
}

.installations-carousel .carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.installations-carousel .carousel-slide {
  flex: 0 0 33.333%;
  box-sizing: border-box;
  padding: 0 8px;
}

.installations-carousel .carousel-slide img {
  width: 100%;
  aspect-ratio: 16/20;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.6);
}

.installations-carousel .carousel-prev,
.installations-carousel .carousel-next {
  background: var(--accent);
  color: #fff;
}


/* ================= installation progress section ================= */

.project-timeline {
 padding: 80px 6vw;
 background: #121212;
 text-align: center;
}


.project-timeline h2 {
 font-size: 2.4rem;
 font-weight: 400;
 color: #fff;
 margin-bottom: 12px;
}


.project-timeline p {
 max-width: 750px;
 margin: 0 auto 50px;
 color: #fff;
 font-size: 1.15rem;
 line-height: 1.7;
}


/* Progress Layout */


.progress-flow {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 28px;
 flex-wrap: nowrap;
}


.progress-item {
 width: 28%;
 min-width: 260px;
}


.progress-item img {
 width: 100%;
 border-radius: 14px;
 box-shadow: 0 10px 26px rgba(0,0,0,0.10);
 transition: transform .3s ease;
}


.progress-arrow {
 font-size: 3rem;
 color: #0073e6;
 user-select: none;
 line-height: 0;
}


/* Mobile Responsive */


@media (max-width: 900px) {
 .progress-flow {
   flex-direction: column;
   gap: 18px;
 }


 .progress-arrow {
   transform: rotate(90deg);
   font-size: 2.4rem;
 }


 .progress-item {
   width: 85%;
 }
}


