/* == Custom Styles ========== */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* ---- CSS Variables ---- */
:root {
  /* Colors */
  --gf-green: #03503d;
  --gf-green-light: #2a6648;
  --gf-gold: #e8a020;
  --gf-gold-hover: #f6a421;
  --gf-white: #ffffff;
  --gf-light: #f5f7f5;
  --gf-text: #222222;
  --gf-muted: #7a7a7a;
  --gf-border: #dee2e6;
  --gf-gray-dark: #333333;
  --gf-gray: #555555;
  --gf-gray-light: #717171;
  --gf-bg-light: #f8f7f7;
  --gf-bg-nav: #f7f7f7;
  --gf-bg-dark: #0e3d2d;

  /* Typography - System Font Stacks */
  --font-heading:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
  --font-body:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;

  --font-roboto: "Roboto", sans-serif;

  /* Spacing */
  --radius: 10px;
  --radius-lg: 15px;
  --radius-sm: 6px;

  /* Transitions */
  --transition: 0.3s ease;

  /* Font Sizes - Desktop */
  --fs-xs: 0.8125rem; /* 13px */
  --fs-sm: 0.875rem; /* 14px */
  --fs-base: 1rem; /* 16px */
  --fs-md: 1.125rem; /* 18px */
  --fs-lg: 1.25rem; /* 20px */
  --fs-xl: 1.5rem; /* 24px */
  --fs-2xl: 1.75rem; /* 28px */
  --fs-3xl: 2rem; /* 32px */
  --fs-4xl: 2.5rem; /* 40px */
  --fs-5xl: 2.8125rem; /* 45px */

  /* Line Heights */
  --lh-tight: 1.25;
  --lh-normal: 1.5;
  --lh-loose: 1.7;
}

/* Tablet */
@media (max-width: 991.98px) {
  :root {
    --fs-5xl: 2.5rem; /* 40px */
    --fs-4xl: 2.25rem; /* 36px */
    --fs-3xl: 1.75rem; /* 28px */
    --fs-2xl: 1.5rem; /* 24px */
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  :root {
    --fs-5xl: 2rem; /* 32px */
    --fs-4xl: 1.875rem; /* 30px */
    --fs-3xl: 1.5rem; /* 24px */
    --fs-2xl: 1.375rem; /* 22px */
    --fs-xl: 1.25rem; /* 20px */
  }
}

/* ---- Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--gf-text);
  background: var(--gf-white);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
}

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

a {
  color: var(--gf-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  text-decoration: underline;
}
a:hover {
  color: var(--gf-green);
}

img {
  max-width: 100%;
  height: auto;
}

/* Container widths */
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1240px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1350px;
  }
}

/* ---- Utilities ---- */
.text-green {
  color: var(--gf-green) !important;
}
.text-gold {
  color: var(--gf-gold) !important;
}
.bg-green {
  background-color: var(--gf-green) !important;
}
.bg-gold {
  background-color: var(--gf-gold) !important;
}

/* ---- Buttons (Base) ---- */
.btn-gf-primary,
.btn-gf-secondary,
.btn-gf-light {
  font-family: var(--font-heading);
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  min-width: 9.5rem;
  height: 2.5rem;
  border: 2px solid transparent;
}

.btn-gf-primary {
  background: var(--gf-green);
  color: var(--gf-white);
  border-color: var(--gf-green);
}
.btn-gf-primary:hover {
  background: var(--gf-green-light);
  border-color: var(--gf-green-light);
  color: var(--gf-white);
}

.btn-gf-secondary {
  background: var(--gf-gold);
  color: var(--gf-bg-light);
  border-color: var(--gf-gold);
}

form .btn-gf-secondary {
  font-weight: 500;
}

.btn-gf-secondary:hover {
  background: var(--gf-gold-hover);
  border-color: var(--gf-gold-hover);
  color: var(--gf-white);
}

.btn-gf-light {
  background: #eaeaea;
  color: var(--gf-green);
  border-color: #eaeaea;
}
.btn-gf-light:hover {
  background: var(--gf-green);
  border-color: var(--gf-green);
  color: var(--gf-white);
}

/* ---- Navbar ---- */
header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 0.75rem);
  top: 27px;
  z-index: 1000;
}
.navbar .container {
  background: var(--gf-bg-nav);
  padding: 0.625rem;
  height: 5.375rem;
  border-radius: var(--radius);
}
.navbar-brand img {
  height: 1.5rem;
  width: auto;
}
.navbar-gf .navbar-nav {
  padding: 0.625rem;
}
.navbar-gf .nav-link,
.navbar-gf .nav-contact-info a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fs-xs);
  color: var(--gf-green);
  padding: 0.825rem 1rem !important;
  letter-spacing: 0.02em;
}
.navbar-gf .nav-link:hover,
.navbar-gf .nav-link.active,
.navbar-gf .nav-contact-info a:hover {
  color: var(--gf-gold-hover);
}
.navbar-gf .nav-contact-info {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* ---- Hero Section ---- */
.hero-section {
  padding-top: 170px;
  padding-bottom: 20px;
}
.hero-section .hero-title {
  font-size: var(--fs-5xl);
  font-weight: 500;
  text-transform: uppercase;
  line-height: var(--lh-tight);
  margin-bottom: 20px;
  color: var(--gf-green);
}
.hero-section .hero-text {
  max-width: 500px;
}
.hero-section .hero-text,
.hero-section .company-text {
  font-size: var(--fs-base);
  color: var(--gf-muted);
}
.hero-section .stats .stat-number {
  font-size: var(--fs-4xl);
  color: var(--gf-gray-dark);
  font-weight: 300;
}
.hero-section .stats .stat-text {
  font-size: var(--fs-base);
  color: var(--gf-gray-dark);
}

/* ---- Action Section ---- */
.action-section {
  margin-bottom: 140px;
}
.action-section .hero-buttons {
  position: absolute;
  top: 35px;
  left: 30px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* ---- Our Services Section ---- */
.our-services-section {
  margin-bottom: 140px;
}
.our-services-section .main-title {
  color: var(--gf-green);
  font-size: var(--fs-5xl);
  font-weight: 500;
  text-transform: uppercase;
  line-height: var(--lh-tight);
  margin-bottom: 20px;
}
.our-services-section .sub-text {
  font-size: var(--fs-base);
  color: var(--gf-gray-dark);
  max-width: 500px;
}
.our-services-section .company-badge {
  position: absolute;
  bottom: 25px;
  left: 50px;
  text-align: center;
}
.our-services-section .company-badge .h2 {
  font-weight: 300;
  font-size: var(--fs-4xl);
  margin: 0;
  color: var(--gf-gray-dark);
}
.our-services-section .company-badge p {
  margin: 15px;
  font-size: var(--fs-base);
  color: var(--gf-gray-dark);
}

/* ---- Service Card (Reusable) ---- */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--gf-bg-light);
  padding: 30px;
  border-radius: var(--radius-lg);
  height: 100%;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h2,
.service-card h3,
.service-card h4 {
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--gf-green);
  margin-bottom: 16px;
}
.service-card p {
  font-size: var(--fs-base) !important;
  font-weight: 400;
  color: var(--gf-green) !important;
}
.service-card a {
  font-size: var(--fs-md);
  color: var(--gf-green);
  text-decoration: none;
  font-weight: 400;
}

/* ---- Heating Section ---- */
.section-heating {
  background: var(--gf-green);
  color: var(--gf-white);
  padding: 120px 0;
  margin-bottom: 140px;
}
.section-heating h2 {
  font-size: var(--fs-5xl);
  font-weight: 500;
  color: var(--gf-bg-light);
}
.section-heating hr {
  border-color: var(--gf-white);
  opacity: 1;
}
.section-heating .lead {
  max-width: 800px;
  font-size: var(--fs-base);
  color: var(--gf-bg-light);
  margin: auto;
}
.section-heating .cta-link {
  font-size: var(--fs-md);
  text-decoration: none;
  color: var(--gf-bg-light);
  font-weight: 500;
}
.section-heating .service-card {
  padding: 40px;
}

/* ---- Engineering Section ---- */
.engineering-section {
  background: var(--gf-green);
  border-radius: 14px;
  padding: 50px;
  color: var(--gf-white);
  margin-bottom: 140px;
}
.engineering-section .product-img {
  border-radius: var(--radius-lg);
}
.engineering-section .section-title {
  color: var(--gf-bg-light);
  font-size: var(--fs-4xl);
  font-weight: 500;
  text-transform: uppercase;
  line-height: var(--lh-tight);
  margin-bottom: 20px;
}
.engineering-section .section-text,
.engineering-section p,
.engineering-section ul li {
  font-size: var(--fs-base);
  color: var(--gf-bg-light);
}
.engineering-section .section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gf-white);
  text-decoration: none;
  font-weight: 500;
}
.engineering-section .section-link:hover {
  text-decoration: underline;
}
.engineering-section h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--gf-bg-light);
  margin-bottom: 20px;
}
.engineering-section ul li a {
  color: var(--gf-gold);
}

/* ---- FAQ Section ---- */
.faq-section {
  margin-bottom: 140px;
}
.faq-section .faq-card {
  padding: 25px 48px;
  background: var(--gf-bg-light);
  border-radius: var(--radius-lg);
}
.faq-section .faq-label {
  color: var(--gf-gray-dark);
  font-size: var(--fs-base);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  display: block;
}
.faq-section .faq-title {
  font-size: var(--fs-5xl);
  font-weight: 500;
  text-transform: uppercase;
  line-height: var(--lh-tight);
  color: var(--gf-green);
  margin-bottom: 20px;
}
.faq-section .faq-contact {
  color: var(--gf-gold);
  font-size: var(--fs-base);
  margin-bottom: 15px;
}

/* Form Inputs */
.gf-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gf-muted);
  color: var(--gf-gray-dark);
  font-size: var(--fs-base);
  border-radius: var(--radius-sm);
  padding: 16px 8px;
}
.gf-input:focus {
  border: 1px solid var(--gf-muted);
  background: none;
  box-shadow: none;
  outline: none;
}

/* Accordion */
.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--gf-gold);
  background: transparent;
}
.faq-accordion .accordion-button {
  background: transparent;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--gf-green);
  padding: 24px 0;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--gf-green);
}
.faq-accordion .accordion-body {
  padding: 0 0 15px 0;
  font-size: var(--fs-sm);
  color: var(--gf-gray-light);
}
.faq-accordion .accordion-button::after {
  transform: scale(0.8);
}

/* ---- Footer ---- */
.footer-main {
  background: var(--gf-green);
  color: var(--gf-white);
  padding: 80px 0;
}
.footer-main .newsletter-row {
  border-bottom: 1px solid var(--gf-white);
  padding-bottom: 40px;
  margin-bottom: 20px;
}
.footer-main .newsletter-title {
  font-size: var(--fs-3xl);
  color: var(--gf-bg-light);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-main .newsletter-form {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-main .newsletter-form input {
  border: none;
  border-bottom: 1px solid var(--gf-white);
  background: transparent;
  color: var(--gf-white);
  padding: 6px 16px;
  width: 310px;
  border-radius: var(--radius-sm);
}
.footer-main .newsletter-form input::placeholder {
  color: var(--gf-bg-light);
}
.footer-main .newsletter-form input:focus {
  outline: none;
  border-color: var(--gf-gold);
}
.footer-main .newsletter-form button {
  height: 47px;
  min-width: 130px;
  border-radius: var(--radius-sm);
}
.footer-main .footer-links h6 {
  font-size: var(--fs-xl);
  color: var(--gf-bg-light);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-main .footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-main .footer-links li {
  margin-bottom: 4px;
}
.footer-main .footer-links a {
  color: var(--gf-bg-light);
  font-size: var(--fs-sm);
  text-decoration: none;
}
.footer-main .footer-links a.contact-link {
  text-decoration: underline;
  font-size: var(--fs-xl);
  font-weight: 600;
}
.footer-main .footer-links a:hover {
  color: var(--gf-gold);
}
.footer-main .footer-contact {
  padding-left: 40px;
}
.footer-main .contact-label {
  font-size: var(--fs-base);
  color: var(--gf-bg-light);
  display: block;
  margin-bottom: 8px;
}
.footer-main .footer-bottom {
  border-top: 1px solid var(--gf-bg-light);
  margin-top: 30px;
  padding-top: 50px;
  text-align: right;
  font-size: var(--fs-base);
}

/* ---- About Page ---- */
.about-hero {
  padding: 160px 0;
}
.about-hero .about-image-wrapper {
  position: relative;
}
.about-hero .about-image-wrapper .about-info-card {
  position: absolute;
  bottom: 10px;
  right: 160px;
  direction: rtl;
  font-size: var(--fs-base);
  color: var(--gf-gray-dark);
  max-width: 252px;
}
.about-hero .about-title {
  color: var(--gf-green);
  font-size: var(--fs-5xl);
  font-weight: 500;
  text-transform: uppercase;
  line-height: var(--lh-tight);
  margin-bottom: 20px;
}
.about-hero p {
  font-size: var(--fs-base);
  color: var(--gf-gray-dark);
  margin-bottom: 15px;
}
.about-hero p a {
  color: var(--gf-gold);
  text-decoration: none;
}
.about-hero .btn-contact {
  font-size: var(--fs-md);
  color: var(--gf-green);
  margin-bottom: 50px;
}

/* ---- Services Page ---- */
.service-installation {
  padding: 140px 0;
}
.service-installation ul.breadcrumb {
  margin-bottom: 20px;
}
.service-installation ul.breadcrumb li span {
  font-size: var(--fs-base);
  color: var(--gf-gold);
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin: 0 8px;
  color: inherit;
  display: inline-block;
}
.service-installation .section-title {
  font-size: var(--fs-5xl);
  font-weight: 500;
  text-transform: uppercase;
  line-height: var(--lh-tight);
  color: var(--gf-green);
  margin-bottom: 20px;
}
.service-installation .section-intro {
  font-size: var(--fs-base);
  color: var(--gf-muted);
  max-width: 1000px;
  margin-bottom: 40px;
}
.service-installation .feature-number {
  font-size: var(--fs-xl);
  color: var(--gf-green);
  font-weight: 600;
}
.service-installation .feature-title {
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--gf-green);
  margin-bottom: 20px;
}
.service-installation .feature-description {
  font-size: var(--fs-base);
  color: var(--gf-green);
  margin-bottom: 20px;
}

.services-section {
  background: linear-gradient(180deg, #255f49, var(--gf-bg-dark));
  padding: 120px 0;
  margin-bottom: 140px;
}

/* ---- Contact Page ---- */
.contact-section {
  padding-top: 160px;
  margin-bottom: 140px;
}
.contact-section .contact-wrapper {
  background: var(--gf-bg-nav);
  border-radius: var(--radius-lg);
  padding: 60px 80px;
}
.contact-section .contact-heading small {
  color: var(--gf-gray-dark);
  font-size: var(--fs-base);
  margin-bottom: 20px;
  display: block;
}
.contact-section .contact-heading h1 {
  font-size: var(--fs-5xl);
  font-weight: 500;
  text-transform: uppercase;
  line-height: var(--lh-tight);
  color: var(--gf-green);
  margin-bottom: 20px;
}
.contact-section .contact-heading p {
  color: var(--gf-muted);
  font-size: var(--fs-base);
  max-width: 512px;
  margin: auto;
}
.contact-section .btn-gf-primary {
  width: 400px;
  height: 60px;
}
.contact-section .contact-cards {
  margin-top: 50px;
}
.contact-section .contact-card {
  border: 1px solid var(--gf-green);
  border-radius: 24px;
  padding: 32px;
  height: 100%;
}
.contact-section .contact-card .h5 {
  color: var(--gf-green);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: var(--fs-2xl);
}
.contact-section .contact-card p {
  font-size: var(--fs-base);
  color: var(--gf-muted);
  font-family: var(--font-roboto);
}

/* Map Section */
.map-wrapper {
  border-radius: var(--radius);
  padding: 100px;
  background-color: var(--gf-green);
  margin-bottom: 124px;
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
  border-radius: var(--radius-sm);
}

/* ---- Blog/Term Page ---- */
.term-page {
  padding: 140px 0 60px;
}
.term-page h1 {
  font-size: var(--fs-5xl);
  font-weight: 500;
  text-transform: uppercase;
  line-height: var(--lh-tight);
  color: var(--gf-green);
}
.term-page .description {
  font-size: var(--fs-base);
  color: var(--gf-muted);
  max-width: 800px;
  margin: 8px auto;
}
.term-page .article-body {
  background-color: var(--gf-bg-light);
  border-radius: var(--radius-lg);
  padding: 60px;
  font-size: var(--fs-base);
  color: var(--gf-gray-dark);
}
.term-page .article-body h2 {
  font-size: var(--fs-3xl);
  color: var(--gf-green);
}
.term-page .article-meta {
  font-size: var(--fs-sm);
}
.term-page .breadcrumb {
  font-size: var(--fs-sm);
}
.term-page figcaption {
  max-width: 650px;
  margin-inline: auto;
  color: var(--gf-muted);
  font-size: 16px;
}
/* 1. Fix the large gap at the top */
.blog-section {
  padding: 40px 0 60px; /* Reduced from 140px to fix the height difference */
}

/* 2. Style the new wrapper link */
.blog-link {
  text-decoration: none !important;
  display: block;
}

/* 3. Ensure the title doesn't turn blue/purple */
.blog-link .card-title {
  color: #212529; /* Standard Bootstrap dark text */
  transition: color 0.3s ease;
}

/* 4. Rounded corners to match your screenshot */
.rounded-4 {
  border-radius: 20px !important;
}

/* 5. Hover Overlay Logic */
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.hover-overlay i {
  font-size: 2rem;
  color: white;
  transform: translateX(-20px);
  transition: transform 0.3s ease-in-out;
}

/* 6. Updated Hover State: Triggered by the whole link */
.blog-link:hover .hover-overlay {
  opacity: 1;
}

.blog-link:hover .hover-overlay i {
  transform: translateX(0);
}

.blog-link:hover .card-title {
  color: #000; /* Subtle shift when hovering text */
}

/* Match the 'admin' color from your image */
.text-warning {
  color: #ffc107 !important; /* Standard Bootstrap warning gold */
  font-weight: 500;
}

/* Ensure the content starts after the navbar */
.blog-detail-wrapper {
    background-color: #fff;
    margin-top: 20px; /* Adjust this if your navbar is fixed */
}

/* Title Styling */
.blog-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #004d40; /* Dark Green Flame Brand Color */
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Image Styling */
.rounded-4 {
    border-radius: 24px !important;
}

.image-caption {
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Gray Content Card Box */
.blog-content-card {
    background-color: #f9f9f9; /* Subtle light gray box from your image */
    line-height: 1.8;
    color: #333;
}

.blog-content-card h2 {
    font-weight: 700;
    color: #004d40;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .blog-main-title {
        font-size: 1.6rem;
        padding: 0 15px;
    }
    .blog-content-card {
        padding: 20px !important;
    }
}

/* ---- Responsive Media Queries ---- */
@media (max-width: 1399px) {
  .navbar-gf .navbar-nav {
    padding: 0;
  }
  .navbar-gf .nav-link {
    padding: 0.25rem 0.5rem !important;
  }
  .navbar-gf .nav-link,
  .navbar-gf .nav-contact-info a {
    padding: 0.25rem 0.75rem !important;
  }
}
@media (max-width: 1199.98px) {
  header {
    top: 0;
    width: 100%;
    padding-inline: 8px;
  }
  header.mobile-scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .navbar .container {
    background-color: transparent;
    border-radius: initial;
    padding: initial;
    height: auto;
    min-height: 3rem;
  }
  .navbar .navbar-toggler .fa-bars {
    color: var(--gf-green);
    font-size: 1.5rem;
  }
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    position: absolute;
    width: 100%;
    background-color: var(--gf-green);
    height: 100dvh;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: initial;
  }
  .navbar-nav .nav-link {
    color: var(--gf-white);
    font-size: 1.25rem;
  }
  .hero-section,
  .term-page,
  .contact-section {
    padding-top: 85px;
  }
  .action-section {
    margin-bottom: 80px;
  }
  .about-hero,
  .service-installation {
    padding-block: 85px;
  }
  /* Action Section */
  .action-section .hero-buttons {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }
  .image-box img {
    height: auto !important;
  }
}
@media (max-width: 991.98px) {
  /* Spacing */
  .action-section,
  .our-services-section,
  .section-heating,
  .engineering-section,
  .faq-section,
  .services-section,
  .contact-section {
    margin-bottom: 80px;
  }

  .section-heating,
  .services-section {
    padding: 80px 0;
  }
}

@media (max-width: 767.98px) {
  .navbar-gf .nav-contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  /* Our Services */
  .our-services-section .company-badge {
    position: static;
    margin-top: 20px;
  }

  /* Engineering Section */
  .engineering-section {
    padding: 30px;
  }

  /* FAQ Section */
  .faq-section .faq-card {
    padding: 20px;
  }

  /* Footer */
  .footer-main {
    padding-block: 48px;
  }
  .footer-main .newsletter-form {
    justify-content: center;
  }
  .footer-main .newsletter-form input {
    width: 100%;
  }
  .footer-main .footer-contact {
    padding-left: 12px;
    margin-top: 30px;
  }
  .footer-main .footer-bottom {
    text-align: center;
  }

  /* About Page */
  .about-hero .about-image-wrapper .about-info-card {
    position: static;
    direction: ltr;
    margin-top: 20px;
  }

  /* Services Page */
  .service-installation .feature-number {
    margin-bottom: 10px;
  }

  /* Contact Page */
  .contact-section .contact-wrapper {
    padding: 30px 20px;
  }
  .contact-section .btn-gf-primary {
    width: 100%;
  }
  .contact-section .contact-card {
    padding: 20px;
  }

  /* Map */
  .map-wrapper {
    padding: 20px;
    margin-bottom: 60px;
  }
  .map-wrapper iframe {
    height: 300px;
  }

  /* Blog/Term Page */
  .term-page .article-body {
    padding: 20px;
  }

  .footer-main .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  /* Extra small devices */
  .service-card {
    padding: 20px;
  }

  .section-heating .service-card {
    padding: 25px;
  }

  .contact-section .contact-card .h5 {
    font-size: var(--fs-xl);
  }

  .footer-main .newsletter-title {
    font-size: var(--fs-xl);
  }
}
