* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #1f1f1f;
  background: #fff9f1;
}

.container {
  width: 92%;
  max-width: 1250px;
  margin: auto;
}

.main-header {
  background: rgb(252, 248, 238);
  padding: 22px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.logo img {
  width: 210px;
  height: auto;
  display: block;
}

.logo a {
  display: flex;
  align-items: center;
}

nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #2b140c;
  font-weight: bold;
  font-size: 16px;

  padding: 12px 18px;
  border: 2px solid #d84a0f;
  border-radius: 6px;

  background: rgb(255, 255, 255);

  transition: all 0.3s ease;
}

nav a:hover {
  background: #d84a0f;
  color: white;

  transform: translateY(-2px);
}
.dropdown {
  position: relative;
}


/* Fireplaces button */
.dropdown-btn {
  background: white;
  color: #2b140c;

  border: 2px solid #d84a0f;
  border-radius: 6px;

  padding: 12px 18px;

  font-size: 14px;
  font-weight: bold;

  cursor: pointer;
}


/* hidden menu */
.dropdown-content {
  position: absolute;
  top: 55px;
  left: 0;

  width: 240px;

  background: #fff8ef;

  border-radius: 8px;

  box-shadow: 0 12px 25px rgba(0,0,0,0.25);

  overflow: hidden;


  max-height: 0;
  opacity: 0;

  transition: 
    max-height 0.4s ease,
    opacity 0.3s ease;

  z-index: 999;
}


/* links inside menu */
.dropdown-content a {
  display: block;

  padding: 14px 18px;

  color: #2b140c;

  border: none;

  text-decoration: none;
}


/* hover inside dropdown */
.dropdown-content a:hover {
  background: #d84a0f;
  color: white;
}


/* opened menu */
.dropdown-content.show {
  max-height: 400px;
  opacity: 1;
}
.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

/* Background picture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("images/fireplace.png");
  background-size: cover;
  background-position: center;

  filter: blur(2px);
  transform: scale(1.05);

  z-index: -2;
}

/* Dark fireplace overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  z-index: -1;
}

.hero-overlay {
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h2 {
  max-width: 1100px;
  font-size: 54px;
  line-height: 1.15;
  font-family: Georgia, serif;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero h2 span {
  color: #e95a14;
}
.hero-quote-button {
  font-size: 18px; /* about 30% larger than 16px */
  cursor: pointer;
  padding: 17px 28px;

  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-quote-button:hover {
  background: #a93a0d;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
.hero p {
  max-width: 750px;
  font-size: 22px;
  line-height: 1.6;
  text-align: center;

  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
}
.btn {
  display: inline-block;
  padding: 16px 26px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 3px;
}

.primary {
  background: #d84a0f;
  color: white;
}

.secondary {
  border: 2px solid white;
  color: white;
}

.outline {
  border: 2px solid #d84a0f;
  color: #d84a0f;
}

.features {
  background: #fff5e8;
  padding: 55px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  text-align: center;
}

.feature {
  padding: 20px 35px;
  border-right: 1px solid #ddd;
}

.feature:last-child {
  border-right: none;
}

.icon {
  font-size: 56px;
}

.feature h3 {
  text-transform: uppercase;
  font-size: 22px;
}

.feature p {
  line-height: 1.7;
}

.projects {
  background: #111;
  color: white;
  padding: 65px 0;
}

.projects-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 35px;
  align-items: center;
}

.orange {
  color: #e95a14;
  font-weight: bold;
  text-transform: uppercase;
}

.projects h2 {
  font-size: 38px;
  font-family: Georgia, serif;
}

.projects-text p {
  line-height: 1.6;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.project-card {
  border: 1px solid #555;
  background: #1c1c1c;
  text-align: center;
}

.project-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.project-card h4 {
  text-transform: uppercase;
  font-size: 14px;
}

.hvac {
  background: linear-gradient(to right, #24130b, #0f0f0f);
  color: white;
  padding: 20px 0;
}

.hvac-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.hvac h2 {
  color: #e95a14;
  text-transform: uppercase;
  font-size: 24px;
  margin: 0;
}

footer {
  background: #f7f1e8;
  color: #2b140c;
  padding: 20px 0 10px;

  font-family: 'Lora', serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
  gap: 18px;
}

.footer-logo img {
  width: 200px;
  height: auto;
  margin-bottom: 8px;
}

.footer-logo p {
  max-width: 300px;
  line-height: 1.6;
  color: #000000;
}
footer h3 {
  color: #e95a14;
  text-transform: uppercase;
}
footer h3 {
  font-family: 'Cinzel', serif;

  color: #c94812;
  text-transform: uppercase;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;

  margin-bottom: 12px;
}

footer p,
footer a,
footer small {
  font-family: 'Lora', serif;

  font-size: 16px;
  line-height: 1.5;

  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: #3a2418;
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 500;

  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #c94812;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  color: #5a4638;
  margin-top: 15px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .header-content,
  .hvac-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h2 {
    font-size: 42px;
  }

  .feature-grid,
  .projects-content,
  .project-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
}
/* =========================================
   SERVICES PAGE
========================================= */



.section-label {
  margin: 0;
  color: #d85619;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.services-section {
  padding: 45px 0 75px;
  background: #f8f3eb;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-heading h2 {
  margin: 10px 0 15px;
  color: #2b140c;
  font-size: 38px;
}

.section-heading > p:not(.section-label) {
  color: #59483d;
  font-size: 17px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;

  min-height: 420px;

  padding: 32px;

  border-radius: 12px;

  color: white;

  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}


/* background picture */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  filter: blur(2px);
  transform: scale(1.08);

  z-index: 0;
}


/* dark layer */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.55);

  z-index: 1;
}


/* keep text above picture */
.service-card * {
  position: relative;
  z-index: 2;
}
.service-card:nth-child(1)::before {
  background-image: url("images/Screenshot\ \(10\).png");
}

.service-card:nth-child(2)::before {
  background-image: url("images/fireplace.png");
}

.service-card:nth-child(3)::before {
  background-image: url("images/gas-piping.webp");
}

.service-card:nth-child(4)::before {
  background-image: url("images/insert.webp");
}

.service-card:nth-child(5)::before {
  background-image: url("images/servicefp.jpg");
}

.service-card:nth-child(6)::before {
  background-image: url("images/firepit.png");
}

.service-card:nth-child(7)::before {
  background-image: url("images/builder.jpg");
}

.service-card:nth-child(8)::before {
  background-image: url("images/sklad.jpg");
}

.service-card.featured-service {
  border-top: 5px solid #d85619;
}

.service-icon {
  margin-bottom: 14px;
  font-size: 38px;
}

.service-card h3 {
  color: white;
  font-size: 22px;

  font-weight: 700;
  letter-spacing: 0.8px;

  margin: 0 0 12px;

  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.service-card p {
  margin: 0 0 16px;
  color: #f4eee8;
  font-size: 17px;
  line-height: 1.7;

  font-weight: 500;
  letter-spacing: 0.4px;

  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.service-card li {
  color: #f4eee8;
  font-size: 17px;
  line-height: 1.6;

  font-weight: 500;
  letter-spacing: 0.4px;

  margin-bottom: 8px;

  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}


.service-card li::marker {
  color: #d85619;
}

.service-process {
  padding: 70px 0;
  color: white;
  background:
    linear-gradient(
      135deg,
      #27140b,
      #111
    );
}

.light-heading h2,
.light-heading > p:not(.section-label) {
  color: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-step {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.process-step span {
  color: #e95a14;
  font-size: 34px;
  font-weight: 700;
}

.process-step h3 {
  margin: 12px 0;
  color: white;
  font-size: 19px;
}

.process-step p {
  margin: 0;
  color: #e9dfd7;
  font-size: 15px;
  line-height: 1.6;
}

.services-cta {
  padding: 55px 0;
  background: #fff;
}

.services-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.services-cta h2 {
  margin: 8px 0 10px;
  color: #2b140c;
  font-size: 32px;
}

.services-cta p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  color: #59483d;
  font-size: 16px;
  line-height: 1.65;
}

.active-link {
  color: #d85619;
}

@media (max-width: 950px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .services-hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .services-hero,
  .services-hero-overlay {
    min-height: 420px;
  }

  .services-hero-content h1 {
    font-size: 31px;
  }

  .services-hero-content > p:not(.section-label) {
    font-size: 17px;
  }

  .services-section,
  .service-process {
    padding: 50px 0;
  }

  .service-card {
    padding: 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 30px;
  }
}
 /* =========================================
   GAS FIREPLACE CATALOG PAGE
========================================= */

.catalog-intro {
  padding: 65px 0;
  background:
    linear-gradient(
      135deg,
      #f8f3eb,
      #fff
    );
}

.catalog-intro-content {
  max-width: 950px;
  text-align: center;
}

.catalog-intro h1 {
  margin: 10px 0 18px;
  color: #2b140c;
  font-size: 46px;
  line-height: 1.2;
}

.catalog-intro-content > p:not(.section-label) {
  max-width: 820px;
  margin: 0 auto;
  color: #59483d;
  font-size: 18px;
  line-height: 1.75;
}

.catalog-intro-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.catalog-outline {
  color: #c94812;
  border: 2px solid #c94812;
}

.catalog-section {
  padding: 65px 0 80px;
  background: #f6f3ee;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 25px;
  margin-bottom: 30px;
}

.catalog-toolbar h2 {
  margin: 8px 0 0;
  color: #2b140c;
  font-size: 34px;
}

.catalog-count {
  color: #69574b;
  font-size: 14px;
  font-weight: 600;
}

.shop-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.catalog-filters {
  padding: 24px;
  background: white;
  border: 1px solid #dfd4c8;
  border-radius: 9px;
}

.catalog-filters h3 {
  margin: 0 0 22px;
  color: #2b140c;
  font-size: 20px;
}

.filter-group {
  padding: 18px 0;
  border-top: 1px solid #e8dfd6;
}

.filter-group h4 {
  margin: 0 0 12px;
  color: #2b140c;
  font-size: 15px;
}

.filter-group label {
  display: block;
  margin-bottom: 10px;
  color: #59483d;
  font-size: 14px;
  cursor: pointer;
}

.filter-group input {
  margin-right: 8px;
  accent-color: #c94812;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  overflow: hidden;
  background: white;
  border: 1px solid #ded3c7;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(42, 22, 12, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(42, 22, 12, 0.15);
}

.product-image-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #eee8e1;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  padding: 7px 12px;
  color: white;
  background: #c94812;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.product-card-content {
  padding: 18px;
}



.product-card h3 {
    margin: 0 0 15px;

    color: #2b140c;

    font-size: 21px;
    line-height: 1.35;

    font-weight: 700;
}

.product-category {
  margin: 0 0 15px;
  color: #756155;
  font-size: 14px;
  font-weight: 600;
}

.product-description {
  color: #59483d;
  font-size: 15px;
  line-height: 1.65;
}

.product-features {
  margin: 18px 0;
  padding-left: 20px;
}

.product-features li {
  margin-bottom: 8px;
  color: #46372e;
  font-size: 14px;
  line-height: 1.45;
}

.product-features li::marker {
  color: #c94812;
}

.product-price {
    margin: 15px 0;

    color: #2b140c;

    font-size: 16px;
    font-weight: 600;
}

.product-price strong {
    display: block;
    margin-top: 4px;

    color: #c94812;

    font-size: 24px;
}


.product-button {
    display: block;

    width: 100%;

    padding: 13px;

    border-radius: 6px;

    text-align: center;

    text-decoration: none;

    background: #c94812;
    color: white;

    font-weight: 700;
}

.product-details-button {
  color: #c94812;
  background: white;
  border: 2px solid #c94812;
}

.product-quote-button {
  color: white;
  background: #c94812;
  border: 2px solid #c94812;
}

.catalog-benefits {
  padding: 70px 0;
  background: white;
}

.catalog-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.catalog-benefit {
  padding: 28px;
  text-align: center;
  background: #f8f3eb;
  border-radius: 8px;
}

.catalog-benefit span {
  display: block;
  margin-bottom: 13px;
  font-size: 38px;
}

.catalog-benefit h3 {
  margin: 0 0 10px;
  color: #2b140c;
  font-size: 19px;
}

.catalog-benefit p {
  margin: 0;
  color: #59483d;
  font-size: 14px;
  line-height: 1.65;
}

.product-help {
  padding: 55px 0;
  color: white;
  background:
    linear-gradient(
      135deg,
      #29160c,
      #111
    );
}

.product-help-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.product-help h2 {
  margin: 8px 0 12px;
  color: white;
  font-size: 31px;
}

.product-help p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  color: #eadfd8;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .catalog-filters {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .catalog-intro h1 {
    font-size: 34px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .catalog-benefit-grid {
    grid-template-columns: 1fr;
  }

  .product-help-content {
    flex-direction: column;
    text-align: center;
  }
} 
 /* =========================================
   GAS PIPING PAGE
========================================= */

.gas-page-intro {
  padding: 65px 0;
  background:
    linear-gradient(
      135deg,
      #f8f3eb,
      #ffffff
    );
}

.gas-page-intro-content {
  max-width: 950px;
  text-align: center;
}

.gas-page-intro h1 {
  margin: 10px 0 18px;
  color: #2b140c;
  font-size: 46px;
  line-height: 1.2;
}

.gas-page-intro-content > p:not(.section-label) {
  max-width: 830px;
  margin: 0 auto;
  color: #59483d;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.gas-services-section {
  padding: 70px 0;
  background: #f6f1e9;
}

.gas-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.gas-service-card {
  padding: 32px;
  background: white;
  border: 1px solid #e2d6c9;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(42, 22, 12, 0.08);
}

.gas-card-icon {
  margin-bottom: 14px;
  font-size: 40px;
}

.gas-service-card h3 {
  margin: 0 0 12px;
  color: #2b140c;
  font-size: 23px;
}

.gas-service-card p {
  margin: 0 0 16px;
  color: #59483d;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.gas-service-card ul {
  margin: 0;
  padding-left: 20px;
}

.gas-service-card li {
  margin-bottom: 8px;
  color: #46372e;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.gas-service-card li::marker {
  color: #c94812;
}


.fuel-comparison-section {
  padding: 70px 0;
  background: #f6f1e9;
}

.fuel-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.fuel-card {
  padding: 35px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(42, 22, 12, 0.08);
}

.fuel-icon {
  margin-bottom: 15px;
  font-size: 42px;
}

.fuel-card h3 {
  margin: 0 0 14px;
  color: #2b140c;
  font-size: 25px;
}

.fuel-card p {
  margin: 0;
  color: #59483d;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.gas-process-section {
  padding: 70px 0;
  color: white;
  background:
    linear-gradient(
      135deg,
      #28150c,
      #101010
    );
}

.gas-light-heading h2,
.gas-light-heading > p:not(.section-label) {
  color: white;
}

.gas-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gas-process-step {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.gas-process-step span {
  color: #e95a14;
  font-size: 33px;
  font-weight: 700;
}

.gas-process-step h3 {
  margin: 12px 0;
  color: white;
  font-size: 19px;
}

.gas-process-step p {
  margin: 0;
  color: #eadfd7;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.gas-safety-section {
  padding: 55px 0;
  background: #fff;
}

.gas-safety-content {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.gas-safety-icon {
  font-size: 62px;
  text-align: center;
}

.gas-safety-section h2 {
  margin: 8px 0 12px;
  color: #2b140c;
  font-size: 31px;
}

.gas-safety-section p:not(.section-label) {
  max-width: 900px;
  margin: 0;
  color: #59483d;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.gas-faq-section {
  padding: 70px 0;
  background: #f6f1e9;
}

.gas-faq-list {
  max-width: 900px;
  margin: auto;
}

.gas-faq-item {
  margin-bottom: 12px;
  background: white;
  border: 1px solid #e2d6c9;
  border-radius: 7px;
  overflow: hidden;
}

.gas-faq-item summary {
  padding: 19px 22px;
  color: #2b140c;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.gas-faq-item summary:hover {
  color: #c94812;
}

.gas-faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: #59483d;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

.gas-page-cta {
  padding: 55px 0;
  color: white;
  background:
    linear-gradient(
      135deg,
      #2a160c,
      #111
    );
}

.gas-page-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.gas-page-cta h2 {
  margin: 8px 0 10px;
  color: white;
  font-size: 32px;
}

.gas-page-cta p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  color: #eadfd7;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 950px) {
  .gas-services-grid,
  .fuel-comparison-grid {
    grid-template-columns: 1fr;
  }


  .gas-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gas-page-cta-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 650px) {
  .gas-page-intro h1 {
    font-size: 34px;
  }



  .gas-process-grid {
    grid-template-columns: 1fr;
  }

  .gas-safety-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gas-service-card,
  .fuel-card {
    padding: 24px;
  }
} 
/* =========================================
   PORTFOLIO PAGE
========================================= */

.portfolio-intro {
  padding: 55px 0 45px;
  background: #f8f3eb;
}

.portfolio-intro-content {
  max-width: 850px;
  text-align: center;
}

.portfolio-intro h1 {
  margin: 10px 0 15px;
  color: #2b140c;
  font-size: 42px;
  line-height: 1.2;
}

.portfolio-intro-content > p:not(.section-label) {
  max-width: 760px;
  margin: 0 auto;
  color: #59483d;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
}

.portfolio-section {
  padding: 55px 0 75px;
  background: #ffffff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.portfolio-card {
  overflow: hidden;
  background: #f8f3eb;
  border: 1px solid #e1d6ca;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(42, 22, 12, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(42, 22, 12, 0.14);
}

.portfolio-card img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-card:hover img {
  transform: scale(1.03);
}

.portfolio-caption {
  padding: 16px 18px 18px;
}

.portfolio-caption h3 {
  margin: 0 0 6px;
  color: #2b140c;
  font-size: 18px;
  line-height: 1.3;
}

.portfolio-caption p {
  margin: 0;
  color: #c94812;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

@media (max-width: 950px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .portfolio-intro h1 {
    font-size: 32px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card img {
    height: 240px;
  }
}/* =========================================
   ABOUT PAGE
========================================= */

.about-intro {
  padding: 85px 0;
  color: white;

  background:
    linear-gradient(
      rgba(28, 13, 6, 0.72),
      rgba(28, 13, 6, 0.68)
    ),
    url("images/about-hero.jpg");

  background-size: cover;
  background-position: center;
}

.about-intro-content {
  max-width: 900px;
  text-align: center;
}

.about-intro h1 {
  margin: 12px 0 20px;

  color: white;

  font-size: 56px;
  line-height: 1.15;
}

.about-intro-content > p:not(.section-label) {
  max-width: 800px;
  margin: 0 auto;

  color: #f5eee8;

  font-size: 19px;
  line-height: 1.8;
  font-weight: 500;

  letter-spacing: 0.3px;
}


/* STORY */

.about-story {
  padding: 75px 0;
  background: #f8f3eb;
}

.about-story-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  align-items: center;

  gap: 55px;
}

.about-story-image img {
  width: 100%;
  height: 520px;

  display: block;
  object-fit: cover;

  border-radius: 10px;

  box-shadow:
    0 14px 35px
    rgba(42, 22, 12, 0.16);
}

.about-story-text h2 {
  margin: 10px 0 20px;

  color: #2b140c;

  font-size: 38px;
  line-height: 1.25;
}

.about-story-text p:not(.section-label) {
  margin: 0 0 17px;

  color: #59483d;

  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;

  letter-spacing: 0.25px;
}


/* PRESIDENT MESSAGE */

.president-message {
  padding: 70px 0;

  color: white;

  background:
    linear-gradient(
      135deg,
      #29160c,
      #111111
    );
}

.president-message-content {
  max-width: 950px;
  text-align: center;
}

.president-message h2 {
  margin: 10px 0 25px;

  color: white;

  font-size: 36px;
}

.president-message blockquote {
  margin: 0 auto;

  max-width: 850px;

  color: #f5eee8;

  font-family: "Lora", serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.75;
}

.president-name {
  margin: 22px 0 0;

  color: #e95a14;

  font-size: 17px;
  font-weight: 700;
}


/* BELIEFS */

.about-beliefs {
  padding: 75px 0;
  background: white;
}

.belief-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;
}

.belief-card {
  padding: 35px 28px;

  text-align: center;

  background: #f8f3eb;

  border: 1px solid #e3d8cc;
  border-radius: 10px;
}

.belief-icon {
  margin-bottom: 15px;
  font-size: 42px;
}

.belief-card h3 {
  margin: 0 0 14px;

  color: #2b140c;

  font-size: 21px;
}

.belief-card p {
  margin: 0;

  color: #59483d;

  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}


/* CULTURE */

.company-culture {
  padding: 75px 0;

  color: white;

  background:
    linear-gradient(
      135deg,
      #27140b,
      #111111
    );
}

.culture-heading h2,
.culture-heading > p:not(.section-label) {
  color: white;
}

.culture-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 20px;
}

.culture-card {
  padding: 27px 24px;

  border:
    1px solid
    rgba(255, 255, 255, 0.18);

  border-radius: 8px;

  background:
    rgba(255, 255, 255, 0.04);
}

.culture-card span {
  color: #e95a14;

  font-size: 30px;
  font-weight: 700;
}

.culture-card h3 {
  margin: 13px 0 10px;

  color: white;

  font-size: 18px;
}

.culture-card p {
  margin: 0;

  color: #e9ded6;

  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}


/* TEAM */

.about-team {
  padding: 70px 0;
  background: #f8f3eb;
}

.about-team-image img {
  width: 100%;
  max-height: 650px;

  display: block;
  object-fit: cover;

  border-radius: 10px;

  box-shadow:
    0 12px 32px
    rgba(42, 22, 12, 0.14);
}


/* STATS */

.company-stats {
  padding: 48px 0;
  background: white;
}

.company-stats-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 20px;

  text-align: center;
}

.company-stat {
  padding: 22px;
}

.company-stat strong {
  display: block;

  color: #c94812;

  font-size: 40px;
  line-height: 1;
}

.company-stat span {
  display: block;

  margin-top: 10px;

  color: #2b140c;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 0.5px;
}


/* ABOUT CTA */

.about-cta {
  padding: 55px 0;

  color: white;

  background:
    linear-gradient(
      135deg,
      #29160c,
      #111111
    );
}

.about-cta-content {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 35px;
}

.about-cta h2 {
  margin: 8px 0 10px;

  color: white;

  font-size: 32px;
}

.about-cta p:not(.section-label) {
  max-width: 760px;
  margin: 0;

  color: #eadfd7;

  font-size: 16px;
  line-height: 1.7;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .belief-grid {
    grid-template-columns: 1fr;
  }

  .culture-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .company-stats-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .about-cta-content {
    flex-direction: column;
    text-align: center;
  }

}


@media (max-width: 650px) {

  .about-intro {
    padding: 65px 0;
  }

  .about-intro h1 {
    font-size: 39px;
  }

  .about-story-image img {
    height: 350px;
  }

  .about-story-text h2,
  .president-message h2 {
    font-size: 30px;
  }

  .president-message blockquote {
    font-size: 18px;
  }

  .culture-grid,
  .company-stats-grid {
    grid-template-columns: 1fr;
  }

}
/* =========================================
   FAQ PAGE
========================================= */

.faq-intro {
  padding: 65px 0 55px;
  background: #f8f3eb;
}

.faq-intro-content {
  max-width: 900px;
  text-align: center;
}

.faq-intro h1 {
  margin: 10px 0 18px;
  color: #2b140c;
  font-size: 44px;
  line-height: 1.2;
}

.faq-intro-content > p:not(.section-label) {
  max-width: 760px;
  margin: 0 auto;
  color: #59483d;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.3px;
}


.faq-page-section {
  padding: 65px 0 80px;
  background: white;
}


.faq-category {
  max-width: 950px;
  margin: 0 auto 65px;
}


.faq-category:last-child {
  margin-bottom: 0;
}


.faq-category-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}


.faq-category-heading > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  background: #f8f3eb;
  border: 1px solid #e3d7cb;
  border-radius: 50%;
  font-size: 30px;
}


.faq-category-heading h2 {
  margin: 6px 0 0;
  color: #2b140c;
  font-size: 30px;
}


.faq-list {
  display: grid;
  gap: 12px;
}


.faq-item {
  overflow: hidden;
  background: #f8f3eb;
  border: 1px solid #e2d6c9;
  border-radius: 8px;
}


.faq-item summary {
  position: relative;
  padding: 19px 54px 19px 22px;
  color: #2b140c;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}


.faq-item summary::-webkit-details-marker {
  display: none;
}


.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: #c94812;
  font-size: 27px;
  font-weight: 500;
  transform: translateY(-50%);
}


.faq-item[open] summary::after {
  content: "−";
}


.faq-item summary:hover {
  color: #c94812;
}


.faq-item p {
  margin: 0;
  padding: 0 22px 21px;
  color: #59483d;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.25px;
}


.faq-contact-section {
  padding: 55px 0;
  color: white;
  background:
    linear-gradient(
      135deg,
      #29160c,
      #111111
    );
}


.faq-contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}


.faq-contact-section h2 {
  margin: 8px 0 10px;
  color: white;
  font-size: 32px;
}


.faq-contact-section p:not(.section-label) {
  max-width: 720px;
  margin: 0;
  color: #eadfd7;
  font-size: 16px;
  line-height: 1.7;
}


@media (max-width: 750px) {

  .faq-intro h1 {
    font-size: 34px;
  }

  .faq-category-heading {
    align-items: flex-start;
  }

  .faq-category-heading h2 {
    font-size: 25px;
  }

  .faq-contact-content {
    flex-direction: column;
    text-align: center;
  }

}


@media (max-width: 500px) {

  .faq-category-heading > span {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .faq-item summary {
    padding: 17px 48px 17px 17px;
    font-size: 16px;
  }

  .faq-item p {
    padding: 0 17px 18px;
    font-size: 15px;
  }

}
/* =========================================
   Coming Soon Pages
========================================= */

.coming-soon-page {
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
    background: linear-gradient(135deg,#f8f3eb,#ffffff);
}

.coming-soon-content{
    max-width:700px;
    text-align:center;
}

.coming-icon{
    font-size:70px;
    margin-bottom:15px;
}

.coming-soon-content h1{
    font-size:48px;
    color:#2b140c;
    margin-bottom:20px;
}

.coming-divider{
    width:90px;
    height:3px;
    background:#c94812;
    margin:0 auto 35px;
    border-radius:10px;
}

.coming-soon-content h2{
    font-size:30px;
    color:#2b140c;
    margin-bottom:20px;
}

.coming-soon-content p{
    color:#59483d;
    font-size:18px;
    line-height:1.8;
    margin-bottom:18px;
    font-weight:500;
}

.coming-contact{
    margin:35px 0;
}

.coming-contact p{
    font-size:20px;
    font-weight:700;
    margin:8px 0;
}

.coming-soon-content .btn{
    margin-top:10px;
}

.coming-note{
    margin-top:35px;
    color:#777;
    font-style:italic;
}
/* =========================================
   REQUEST A QUOTE POPUP
========================================= */

body.quote-modal-open {
  overflow: hidden;
}


.quote-modal {
  position: fixed;
  inset: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 25px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;

  z-index: 10000;
}


.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.quote-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(18, 9, 4, 0.78);

  backdrop-filter: blur(4px);
}


.quote-modal-window {
  position: relative;
  z-index: 1;

  width: min(920px, 100%);
  max-height: calc(100vh - 50px);

  overflow-y: auto;

  padding: 38px;

  background: #fffaf4;

  border: 1px solid #e3d5c7;
  border-radius: 14px;

  box-shadow:
    0 24px 70px
    rgba(0, 0, 0, 0.35);

  transform: translateY(20px) scale(0.98);

  transition:
    transform 0.25s ease;
}


.quote-modal.is-open .quote-modal-window {
  transform: translateY(0) scale(1);
}


.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;

  width: 42px;
  height: 42px;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0;

  color: #2b140c;
  background: transparent;

  border: none;
  border-radius: 50%;

  font-size: 34px;
  line-height: 1;

  cursor: pointer;
}


.quote-modal-close:hover {
  color: white;
  background: #c94812;
}


.quote-modal-header {
  max-width: 720px;
  margin: 0 auto 30px;

  text-align: center;
}


.quote-modal-header h2 {
  margin: 8px 0 12px;

  color: #2b140c;

  font-size: 34px;
  line-height: 1.2;
}


.quote-modal-header > p:not(.section-label) {
  margin: 0;

  color: #59483d;

  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}


.quote-form {
  display: grid;
  gap: 22px;
}


.quote-form-section {
  margin: 0;
  padding: 24px;

  background: white;

  border: 1px solid #e4d8cc;
  border-radius: 10px;
}


.quote-form-section legend {
  padding: 0 8px;

  color: #2b140c;

  font-size: 19px;
  font-weight: 700;
}


.quote-section-note {
  margin: 0 0 14px;

  color: #69574b;

  font-size: 14px;
}


.quote-form-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}


.quote-field {
  display: flex;
  flex-direction: column;
}


.quote-field-full {
  grid-column: 1 / -1;
}


.quote-field label {
  margin-bottom: 7px;

  color: #2b140c;

  font-size: 14px;
  font-weight: 700;
}


.quote-field label span {
  color: #c94812;
}


.quote-field input,
.quote-field textarea {
  width: 100%;

  padding: 13px 14px;

  color: #2b140c;
  background: #fff;

  border: 1px solid #cdbfb2;
  border-radius: 6px;

  font: inherit;

  outline: none;
}


.quote-field textarea {
  resize: vertical;
  min-height: 130px;
}


.quote-field input:focus,
.quote-field textarea:focus {
  border-color: #c94812;

  box-shadow:
    0 0 0 3px
    rgba(201, 72, 18, 0.13);
}


.quote-field input[type="file"] {
  padding: 11px;
  background: #f8f3eb;
}


.quote-field small {
  margin-top: 7px;

  color: #746358;

  font-size: 12px;
  line-height: 1.5;
}


.quote-choice-group {
  margin-top: 20px;
}


.quote-choice-title {
  margin: 0 0 11px;

  color: #2b140c;

  font-size: 14px;
  font-weight: 700;
}


.quote-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}


.quote-radio-row label,
.quote-checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #46372e;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;
}


.quote-radio-row input,
.quote-checkbox-grid input,
.quote-permission input {
  width: 17px;
  height: 17px;

  flex-shrink: 0;

  accent-color: #c94812;
}


.quote-checkbox-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 13px 18px;
}


.quote-file-message {
  margin-top: 7px;

  color: #c94812;

  font-size: 13px;
  font-weight: 700;
}


.quote-permission {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  padding: 17px 18px;

  color: #46372e;
  background: #f8f3eb;

  border: 1px solid #e2d5c8;
  border-radius: 8px;

  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;

  cursor: pointer;
}


.quote-permission input {
  margin-top: 2px;
}
.quote-privacy-note {
    margin: 8px 0 22px;

    padding: 12px 16px;

    background: #f8f3eb;

    border-left: 4px solid #c94812;

    border-radius: 6px;

    color: #59483d;

    font-size: 14px;
    line-height: 1.6;

    font-weight: 500;
}

.quote-submit-button {
  width: 100%;
  padding: 16px 24px;

  color: white;
  background: #c94812;

  border: 2px solid #c94812;
  border-radius: 7px;

  font-size: 21px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.quote-submit-button:hover {
  background: #a93a0d;
  border-color: #a93a0d;

  transform: translateY(-1px);
}


.quote-response-note {
  margin: -8px 0 0;

  color: #69574b;

  text-align: center;

  font-size: 13px;
  font-style: italic;
}


@media (max-width: 800px) {

  .quote-modal {
    padding: 12px;
  }

  .quote-modal-window {
    max-height: calc(100vh - 24px);
    padding: 30px 20px;
  }

  .quote-form-grid {
    grid-template-columns: 1fr;
  }

  .quote-field-full {
    grid-column: auto;
  }

  .quote-checkbox-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 500px) {

  .quote-modal-header h2 {
    font-size: 28px;
  }

  .quote-form-section {
    padding: 20px 16px;
  }

  .quote-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .quote-radio-row {
    flex-direction: column;
    align-items: flex-start;
  }

}
/* =========================================
   PORTFOLIO IMAGE LIGHTBOX
========================================= */

.portfolio-lightbox-image {
  cursor: zoom-in;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 30px;

  background: rgba(0, 0, 0, 0.9);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;

  z-index: 20000;
}

.portfolio-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.portfolio-lightbox-full-image {
  max-width: 92vw;
  max-height: 82vh;

  width: auto;
  height: auto;

  object-fit: contain;

  border-radius: 6px;

  box-shadow:
    0 18px 60px
    rgba(0, 0, 0, 0.55);
}

.portfolio-lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;

  width: 48px;
  height: 48px;

  padding: 0;

  color: white;
  background: rgba(0, 0, 0, 0.35);

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;

  font-size: 38px;
  line-height: 1;

  cursor: pointer;

  z-index: 20001;
}

.portfolio-lightbox-close:hover {
  background: #c94812;
  border-color: #c94812;
}

.portfolio-lightbox-caption {
  margin: 16px 0 0;

  color: white;

  font-size: 16px;
  font-weight: 600;

  text-align: center;
}

body.portfolio-lightbox-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .portfolio-lightbox {
    padding: 15px;
  }

  .portfolio-lightbox-full-image {
    max-width: 96vw;
    max-height: 78vh;
  }

  .portfolio-lightbox-close {
    top: 10px;
    right: 10px;
  }
}
