/* Patrick's Heating & Cooling Supply - Main Stylesheet */
:root {
  --primary-green: #0b5e28;
  --primary-green-dark: #07431b;
  --primary-green-light: #e8f5e9;
  --accent-yellow: #f5b800;
  --accent-yellow-hover: #d9a300;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.5;
}

/* Header & Nav */
.top-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.brand-logo {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-link-custom {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-link-custom:hover {
  color: var(--primary-green);
}

.header-phone {
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
}

.header-phone:hover {
  color: var(--primary-green);
}

.header-icon-btn {
  color: var(--text-dark);
  font-size: 1.25rem;
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-icon-btn:hover {
  color: var(--primary-green);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--accent-yellow);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  width: 100%;
  height: 100%;
}

.hero-carousel-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content-overlay {
  position: relative;
  z-index: 2;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  z-index: 10;
  width: 5%;
  transition: opacity 0.25s ease;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  opacity: 0.9;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #e2e8f0;
  max-width: 680px;
  margin-bottom: 30px;
  font-weight: 400;
}

.btn-hero-primary {
  background-color: #fae69e;
  color: #111;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-hero-primary:hover {
  background-color: var(--accent-yellow);
  color: #000;
  transform: translateY(-1px);
}

.btn-hero-outline {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}

.btn-hero-outline:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-color: #ffffff;
}

/* Section Titles */
.section-title {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  margin-bottom: 24px;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-green);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Category Cards */
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.25 ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-green);
}

.category-img-box {
  width: 100%;
  height: 140px;
  border-radius: 4px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: #f8fafc;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-img {
  transform: scale(1.08);
}

.category-name {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0;
}

.view-all-link {
  color: var(--primary-green);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.view-all-link:hover {
  color: var(--primary-green-dark);
  text-decoration: underline;
}

/* Feature Highlights Bar */
.features-banner {
  background-color: var(--primary-green);
  color: #ffffff;
  padding: 36px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
}

.feature-icon-wrapper {
  font-size: 2.2rem;
  color: #ffffff;
  opacity: 0.95;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.feature-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.3;
}

/* Brands Grid */
/* Brands Grid */
.brands-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.brand-item {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  max-width: calc(11.11% - 18px);
  /* 9 columns on desktop */
}

.brand-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.brand-img {
  max-height: 38px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.brand-img:hover {
  transform: scale(1.08);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .brands-row {
    justify-content: center;
    gap: 30px;
  }

  .brand-item {
    max-width: calc(25% - 22px);
    flex: 0 0 calc(25% - 22px);
  }
}

@media (max-width: 767px) {
  .brand-item {
    max-width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
  }
}

@media (max-width: 479px) {
  .brand-item {
    max-width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
  }
}

/* Search Section */
.search-section {
  background-color: #f8fafc;
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.search-graphic-placeholder {
  width: 100%;
  height: 260px;
  background-color: #e2e8f0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #cbd5e1;
  color: #64748b;
}

.search-title {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.search-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.search-input-group .form-control {
  padding: 12px 18px;
  font-size: 0.95rem;
  border-color: #cbd5e1;
  border-radius: 4px 0 0 4px;
}

.search-input-group .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(11, 94, 40, 0.15);
}

.btn-search-primary {
  background-color: var(--accent-yellow);
  color: #000;
  font-weight: 800;
  padding: 0 28px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 0 4px 4px 0;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.btn-search-primary:hover {
  background-color: var(--accent-yellow-hover);
}

.search-category-btn {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 14px 8px;
  color: var(--text-dark);
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
}

.search-category-btn i {
  font-size: 2.2rem;
  color: var(--primary-green);
  transition: transform 0.2s ease;
}

.search-category-btn span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.search-category-btn:hover i {
  transform: scale(1.08);
}

/* Search Option Columns with Dividers */
.search-option-col {
  position: relative;
}

@media (min-width: 576px) {
  .search-option-col::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #cbd5e1;
  }

  .search-option-col:last-child::after {
    display: none;
  }
}

.search-section-img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* Reviews / Testimonials */
.reviews-section {
  padding: 55px 0;
}

.review-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.stars-row {
  color: #f59e0b;
  font-size: 0.9rem;
}

.review-time {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.review-text {
  font-size: 0.88rem;
  color: #334155;
  margin-bottom: 18px;
  line-height: 1.55;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e2e8f0;
  padding-top: 12px;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary-green);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.2;
}

.reviewer-meta {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin: 0;
}

/* Footer */
.main-footer {
  background-color: #161a1d;
  color: #cbd5e1;
  font-size: 0.88rem;
  padding-top: 50px;
}

.main-footer p,
.main-footer span {
  color: #cbd5e1;
}

.main-footer .text-muted {
  color: #cbd5e1 !important;
}

.footer-logo-wrapper {
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-logo {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-hours-title {
  color: #ffffff !important;
  font-weight: 700;
  margin-bottom: 2px;
}

.footer-hours-text {
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-yellow);
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  margin-right: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon-btn:hover {
  background-color: var(--primary-green);
  color: #ffffff;
}

.footer-bottom {
  background-color: #0d1114;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
  font-size: 0.8rem;
  color: #64748b;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.footer-anarus-link {
  color: #ef4444 !important;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-anarus-link:hover {
  text-decoration: underline !important;
  color: #f87171 !important;
}

/* Nav Active Link */
.nav-link-custom.active {
  color: var(--primary-green) !important;
  position: relative;
}

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 14px;
  right: 14px;
  height: 3px;
  background-color: var(--primary-green);
  border-radius: 2px;
}

/* Mega Menu Hover & Rich Grid Styling */
@media (min-width: 992px) {

  .top-nav .dropdown:hover>.mega-dropdown-menu,
  .top-nav .dropdown:hover>.dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .top-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 0;
  }
}

.mega-dropdown-menu {
  width: 580px !important;
  border-radius: 8px !important;
  border: 1px solid var(--border-color) !important;
  border-top: 4px solid var(--primary-green) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14) !important;
  padding: 20px !important;
  background: #ffffff !important;
  left: 0;
}

.mega-category-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.2s ease;
  background-color: transparent;
}

.mega-category-item:hover {
  background-color: #f0fdf4;
  color: var(--primary-green);
  transform: translateX(4px);
}

.mega-category-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--primary-green-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega-category-item:hover .mega-category-icon {
  background: var(--primary-green);
  color: #ffffff;
}

.mega-category-title {
  font-weight: 700;
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.2;
  color: var(--text-dark);
}

.mega-category-item:hover .mega-category-title {
  color: var(--primary-green);
}

.mega-category-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin: 0;
}

/* About Us Hero */
.about-hero {
  background: url('../Assets/About us/banner.webp');
  background-size: cover;
  background-position: center;
  min-height: 440px;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 60px 0;
}

.section-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 8px;
  display: block;
}

.text-green-highlight {
  color: #4ade80;
}

/* Who We Serve Section */
.serve-item {
  text-align: center;
  padding: 16px 12px;
  position: relative;
  height: 100%;
}

.serve-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 14px;
  background-color: #ffffff;
  transition: all 0.25s ease;
}

.serve-item:hover .serve-icon-circle {
  background-color: var(--primary-green);
  color: #ffffff;
  transform: translateY(-3px);
}

.serve-item-title {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.serve-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Vertical divider for serve columns on desktop */
@media (min-width: 992px) {
  .border-lg-end {
    border-right: 1px solid var(--border-color);
  }
}

/* Why Choose Us Cards */
.why-choose-card {
  background: #ffffff;
  border-radius: 6px;
  text-align: center;
  height: 100%;
  position: relative;
  padding-bottom: 16px;
}

.why-choose-img-box {
  width: 100%;
  height: 180px;
  background-color: #f1f5f9;
  border-radius: 8px;
  position: relative;
  overflow: visible;
  margin-bottom: 34px;
}

.why-choose-img-box img.why-choose-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease;
}

.why-choose-card:hover .why-choose-img-box img.why-choose-img {
  transform: scale(1.04);
}

.why-choose-img-box i.bg-placeholder-icon {
  font-size: 3.5rem;
  color: #94a3b8;
}

.floating-icon-badge {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background-color: var(--primary-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 3px solid #ffffff;
}

.why-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.why-card-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.45;
  padding: 0 8px;
  margin: 0;
}

/* Story Timeline Section */
.timeline-node {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.timeline-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--primary-green);
  background-color: #ffffff;
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.timeline-year {
  font-weight: 900;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.timeline-year small {
  display: block;
  font-size: 0.72rem;
  color: var(--primary-green);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.timeline-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.timeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 1.2rem;
}

/* Meet Our Team Cards */
.team-card {
  text-align: center;
  margin-bottom: 20px;
  transition: transform 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-img-wrapper {
  width: 100%;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.05);
}

.team-img-placeholder {
  width: 100%;
  height: 180px;
  background-color: #64748b;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.team-img-placeholder i.bg-user-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.5rem;
  color: rgba(255, 255, 255, 0.25);
}

.team-name-overlay {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-yellow);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
}

.team-member-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.team-member-role {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
}

.btn-yellow-cta {
  background-color: var(--accent-yellow);
  color: #000;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 4px;
  border: none;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-yellow-cta:hover {
  background-color: var(--accent-yellow-hover);
  color: #000;
}

/* About Us Building Section Image */
.about-building-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.about-building-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.about-building-wrapper:hover img {
  transform: scale(1.03);
}

/* Highlight Cursive Callout */
.highlight-cursive-cool {
  font-family: 'Caveat', 'Dancing Script', cursive, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--primary-green);
}

/* Contractor Resources Page Styles */
.resources-hero {
  background: url('../Assets/Resources/banner.webp');
  background-size: cover;
  background-position: center;
  min-height: 440px;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 60px 0;
}

.resource-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.resource-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-pdf {
  background-color: #fee2e2;
  color: #991b1b;
}

.badge-video {
  background-color: #e0f2fe;
  color: #075985;
}

.badge-web {
  background-color: #f1f5f9;
  color: #334155;
}

.badge-training {
  background-color: #dcfce7;
  color: #166534;
}

.badge-tool {
  background-color: #fef3c7;
  color: #92400e;
}

.badge-resource {
  background-color: #f3e8ff;
  color: #6b21a8;
}

.badge-gov {
  background-color: #e0e7ff;
  color: #3730a3;
}

.resource-category-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-green);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.resource-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 8px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.resource-card-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.resource-source-tag {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 14px;
}

.btn-resource-cta {
  background-color: var(--primary-green);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  width: fit-content;
}

.btn-resource-cta:hover {
  background-color: var(--primary-green-dark);
  color: #ffffff;
  transform: translateX(2px);
}

.filter-chip {
  background-color: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-chip:hover,
.filter-chip.active {
  background-color: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
}

.format-pill {
  background-color: #ffffff;
  color: #475569;
  border: 1px solid #e2e8f0;
  font-weight: 600;
  font-size: 0.76rem;
  padding: 4px 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.format-pill:hover,
.format-pill.active {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.sidebar-help-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.sidebar-newsletter-card {
  background-color: var(--primary-green-dark);
  color: #ffffff;
  border-radius: 8px;
  padding: 16px;
}

.featured-resource-card {
  border-left: 4px solid var(--primary-green);
}

/* Screenshot Design Matching Styles */
.res-section-title {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #0f172a;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.res-section-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background-color: var(--primary-green);
  margin-top: 4px;
}

.card-guide {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-guide:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
}

.card-img-thumb-wrapper {
  width: 100%;
  height: 135px;
  overflow: hidden;
  position: relative;
  background-color: #f1f5f9;
}

.card-img-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card-guide:hover .card-img-thumb-wrapper img {
  transform: scale(1.04);
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s ease, color 0.25s ease;
  z-index: 2;
}

.card-guide:hover .video-play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  color: var(--accent-yellow);
}

.video-duration-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  z-index: 2;
}

.pdf-icon-box {
  width: 100%;
  height: 110px;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f1f5f9;
}

.pdf-icon-box i {
  font-size: 3rem;
  color: var(--primary-green);
}

@media (min-width: 992px) {
  .col-lg-5th {
    flex: 0 0 auto;
    width: 20%;
  }
}

.card-content-body {
  padding: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-res-title {
  font-size: 0.84rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.25;
}

.card-res-desc {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.35;
  margin-bottom: 10px;
}

.green-cta-link {
  color: var(--primary-green);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s ease, transform 0.2s ease;
}


/* Contact Us Page Styles */
.contact-hero {
  background: linear-gradient(rgba(10, 15, 12, 0.65), rgba(10, 15, 12, 0.75)), url('../Assets/banner2.webp');
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 60px 0;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 36px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.contact-info-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
}

.contact-info-subtitle {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 24px;
}

.contact-detail-group {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background-color: #f0fdf4;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.contact-detail-value:hover {
  color: var(--primary-green);
}

.social-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-pill-fb {
  background-color: #eff6ff;
  color: #1877f2;
  border: 1px solid #dbeafe;
}

.social-pill-fb:hover {
  background-color: #1877f2;
  color: #ffffff;
}

.social-pill-yelp {
  background-color: #fef2f2;
  color: #d32323;
  border: 1px solid #fee2e2;
}

.social-pill-yelp:hover {
  background-color: #d32323;
  color: #ffffff;
}

.social-pill-yt {
  background-color: #fef2f2;
  color: #ff0000;
  border: 1px solid #fee2e2;
}

.social-pill-yt:hover {
  background-color: #ff0000;
  color: #ffffff;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 36px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}