/*
Theme Name: Junk Harbor
Theme URI: http://localhost/junkremoval125/
Author: Antigravity AI
Author URI: https://google.com
Description: A modern, high-converting WordPress theme built to match the Junk Harbor design specification.
Version: 1.4.0
License: GNU General Public License v2 or later
Text Domain: junkremoval-express
*/

:root {
  --primary-green: #015c30;
  --primary-green-hover: #014222;
  --dark-green: #01361c;
  --topbar-green: #013d20;
  --light-green: #22c55e;
  --light-green-bg: #e6f4ea;
  --bg-tint: #f4f8f5;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --text-light: #f9fafb;
  --border-color: #e5e7eb;
  --gold-star: #f59e0b;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.25s ease-in-out;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-tint);
}

body {
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}

/* Typography & Badges */
.text-center { text-align: center; }
.text-green { color: var(--primary-green); }

.tag-subhead {
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--primary-green);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.section-headline {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-headline span {
  color: var(--primary-green);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px auto;
}

/* Buttons */
.btn-green {
  background: var(--primary-green);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-green:hover {
  background: var(--primary-green-hover);
  transform: translateY(-1px);
}

.btn-phone-pill {
  background: var(--primary-green);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-phone-pill:hover {
  background: var(--primary-green-hover);
}

.btn-quote {
  background: var(--primary-green);
  color: white;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-quote:hover {
  background: var(--primary-green-hover);
}

.btn-white-outline {
  background: white;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-white-outline:hover {
  background: #f3f4f6;
}

/* Top Bar */
.top-bar-spec {
  background: var(--topbar-green);
  color: white;
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.top-bar-left i {
  color: var(--light-green);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-right a {
  color: white;
  opacity: 0.85;
  font-size: 0.9rem;
  transition: var(--transition);
}

.top-bar-right a:hover {
  opacity: 1;
}

/* Main Header */
.main-header-spec {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #f1f5f9;
}

.header-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  gap: 20px;
}

.brand-logo-spec {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.jh-main-logo-img {
  height: 62px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.brand-logo-spec:hover .jh-main-logo-img {
  transform: scale(1.02);
}

.jh-footer-logo-img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.brand-emblem-jh {
  width: 42px;
  height: 42px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.brand-text-jh {
  display: flex;
  flex-direction: column;
}

.brand-text-jh .jh-title-main {
  font-size: 1.28rem;
  font-weight: 900;
  color: var(--primary-green);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.brand-text-jh .jh-subtitle {
  font-size: 0.62rem;
  font-weight: 800;
  color: #16a34a;
  letter-spacing: 0.8px;
}

.nav-menu-spec {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-menu-spec > li {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav-menu-spec a {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
  text-transform: none;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: var(--transition);
  padding: 6px 2px;
}

.nav-menu-spec a:hover, .nav-menu-spec a.active {
  color: var(--primary-green);
}

.nav-menu-spec a i.fa-chevron-down {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 1px;
  transition: transform 0.2s ease;
}

.nav-menu-spec .has-dropdown:hover > a i.fa-chevron-down {
  transform: rotate(180deg);
  color: var(--primary-green);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.4rem;
  background: none;
  color: var(--text-dark);
}

/* Hero Section */
.hero-spec {
  background: white;
  padding: 50px 0 60px 0;
  position: relative;
}

.about-hero-spec {
  background: var(--dark-green);
  color: white;
  padding: 70px 0 90px 0;
  position: relative;
}

.hero-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-pill-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light-green-bg);
  color: var(--primary-green);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.hero-main-title {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}

.hero-main-title .green {
  color: var(--primary-green);
}

.hero-lead-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-check-bar {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.hero-check-item i {
  color: var(--primary-green);
}

.hero-actions-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image-box img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

/* Dark Green Quick Service Bar */
.quick-service-bar {
  background: var(--dark-green);
  color: white;
  padding: 30px 0;
}

.quick-service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
}

.quick-service-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.quick-service-tile:hover {
  background: rgba(255,255,255,0.08);
}

.quick-service-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
}

.quick-service-tile span {
  font-size: 0.825rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
  background: var(--bg-tint);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.why-choose-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.why-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-choose-icon {
  width: 52px;
  height: 52px;
  background: var(--light-green-bg);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px auto;
}

.why-choose-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.why-choose-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Services Grid & Heavy Lifting Section */
.our-services-section {
  padding: 80px 0;
  background: white;
}

.services-layout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spec-service-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.spec-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.spec-service-thumb {
  height: 140px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.spec-service-body {
  padding: 16px;
}

.spec-service-body h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.spec-service-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Heavy Lifting Card Right */
.heavy-lifting-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  background: var(--dark-green);
  box-shadow: var(--shadow-md);
}

.heavy-lifting-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.heavy-lifting-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(1, 54, 28, 0.95) 0%, rgba(1, 54, 28, 0) 100%);
  color: white;
}

.heavy-lifting-overlay h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.heavy-lifting-overlay p {
  font-size: 0.875rem;
  color: #d1fae5;
  margin-bottom: 16px;
}

/* Proudly Serving Section */
.serving-section {
  padding: 80px 0;
  background: var(--bg-tint);
}

.serving-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.serving-img {
  width: 100%;
  border-radius: var(--radius-md);
}

.serving-card-box {
  background: white;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.serving-checklist {
  list-style: none;
  margin-top: 16px;
}

.serving-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.serving-checklist i {
  color: var(--primary-green);
}

/* 5-Star Reviews Section */
.reviews-section {
  padding: 80px 0;
  background: white;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-tint);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-color);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review-stars {
  color: var(--gold-star);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.review-author {
  font-size: 0.9rem;
  font-weight: 800;
}

.review-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-quote {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-style: italic;
}

/* CTA Banner */
.cta-banner-spec {
  background: var(--dark-green);
  color: white;
  padding: 30px 0;
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-banner-text h3 {
  font-size: 1.35rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-banner-text p {
  font-size: 0.875rem;
  color: #a7f3d0;
}

.cta-banner-actions {
  display: flex;
  gap: 12px;
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: var(--bg-tint);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.blog-thumb {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.blog-body {
  padding: 20px;
}

.blog-date {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-green);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.blog-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-green);
}

/* Spec Footer */
.footer-spec {
  background: var(--dark-green);
  color: white;
  padding: 70px 0 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-spec-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-spec-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: white;
}

.footer-spec-links {
  list-style: none;
}

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

.footer-spec-links a {
  font-size: 0.85rem;
  color: #9ca3af;
  transition: var(--transition);
}

.footer-spec-links a:hover {
  color: white;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-card {
  background: white;
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  font-size: 1.4rem;
  color: var(--text-muted);
}

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-menu-spec { gap: 14px; }
  .nav-menu-spec a { font-size: 0.85rem; }
  .btn-jh-pill { padding: 9px 16px; font-size: 0.82rem; }
}

@media (max-width: 992px) {
  .hero-spec-grid, .services-layout-grid, .serving-grid, .footer-spec-grid { grid-template-columns: 1fr; }
  .quick-service-grid, .why-choose-grid { grid-template-columns: repeat(3, 1fr); }
  .services-cards-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .mobile-menu-btn { display: block; }
  .nav-menu-spec { display: none; }
  .hero-main-title { font-size: 2.5rem; }
}

@media (max-width: 600px) {
  .quick-service-grid, .why-choose-grid, .services-cards-grid, .reviews-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; gap: 16px; text-align: center; }
}

/* Navigation Dropdown Menu Styles */
.nav-menu-spec .has-dropdown {
  position: relative;
}

.nav-menu-spec .dropdown-menu-spec {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
  border-top: 3px solid var(--primary-green);
}

.nav-menu-spec .has-dropdown:hover .dropdown-menu-spec {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu-spec .dropdown-menu-spec li {
  width: 100%;
  margin: 0;
}

.nav-menu-spec .dropdown-menu-spec a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f1f5f9;
}

.nav-menu-spec .dropdown-menu-spec li:last-child a {
  border-bottom: none;
}

.nav-menu-spec .dropdown-menu-spec a:hover {
  background: #f8fafc;
  color: var(--primary-green);
  padding-left: 24px;
}

/* ==========================================================================
   Junk Harbor Brand & Specific Page Styles
   ========================================================================== */

.brand-emblem-jh {
  width: 44px;
  height: 44px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.brand-text-jh {
  display: flex;
  flex-direction: column;
}

.brand-text-jh .jh-title-main {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-green);
  line-height: 1;
  letter-spacing: -0.5px;
}

.brand-text-jh .jh-subtitle {
  font-size: 0.65rem;
  font-weight: 800;
  color: #16a34a;
  letter-spacing: 0.8px;
}

.btn-jh-pill {
  background: var(--primary-green);
  color: white;
  padding: 10px 22px;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-jh-pill:hover {
  background: var(--primary-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(1, 92, 48, 0.25);
}

/* Furniture Removal Hero */
.furniture-hero {
  background: #f4f8f5;
  padding: 45px 0 65px 0;
  position: relative;
}

.furniture-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.jh-breadcrumbs {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.jh-breadcrumbs a {
  color: #64748b;
  text-decoration: none;
}

.jh-breadcrumbs a:hover {
  color: var(--primary-green);
}

.jh-breadcrumbs span {
  color: #1e293b;
  font-weight: 600;
}

.jh-tag-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-green);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.jh-hero-title {
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.jh-green-text {
  color: var(--primary-green);
}

.jh-hero-lead {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 580px;
}

.jh-feature-badges-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.jh-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
}

.jh-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e6f4ea;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.jh-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.btn-jh-primary {
  background: var(--primary-green);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-jh-primary:hover {
  background: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(1, 92, 48, 0.3);
}

.btn-jh-secondary {
  background: white;
  color: #1e293b;
  border: 1px solid #cbd5e1;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-jh-secondary:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  background: #f8fafc;
}

.jh-hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.jh-stars-rating {
  font-size: 0.9rem;
  color: #f59e0b;
  display: flex;
  align-items: center;
  gap: 4px;
}

.jh-stars-rating strong {
  color: #0f172a;
  margin-left: 4px;
}

.jh-avatar-stack {
  display: flex;
  align-items: center;
}

.jh-avatar-stack img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
  object-fit: cover;
}

.jh-avatar-stack img:first-child {
  margin-left: 0;
}

.furniture-hero-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.jh-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.jh-hero-floating-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #013d20;
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  max-width: 260px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
}

.jh-floating-icon {
  font-size: 1.6rem;
  color: #22c55e;
  flex-shrink: 0;
}

.jh-hero-floating-card p {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

/* Sections General & What We Remove */
.jh-section {
  padding: 70px 0;
}

.jh-bg-white { background: #ffffff; }
.jh-bg-tint { background: #f8faf9; }

.jh-section-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-green);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.jh-section-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.jh-types-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.jh-type-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  transition: all 0.25s ease;
}

.jh-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  border-color: #cbd5e1;
}

.jh-type-icon {
  width: 52px;
  height: 52px;
  background: #e6f4ea;
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px auto;
}

.jh-type-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.jh-type-card p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

.jh-eco-banner {
  background: #e6f4ea;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.jh-eco-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #013d20;
}

.jh-eco-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.btn-jh-outline {
  background: white;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-jh-outline:hover {
  background: #015c30;
  color: white;
  border-color: #015c30;
}

/* How It Works */
.jh-steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
}

.jh-step-item {
  flex: 1;
  text-align: center;
}

.jh-step-circle-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 18px auto;
}

.jh-step-icon {
  width: 100%;
  height: 100%;
  background: var(--primary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 16px rgba(1, 92, 48, 0.25);
}

.jh-step-num {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 26px;
  height: 26px;
  background: #000;
  color: white;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.jh-step-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.jh-step-item p {
  font-size: 0.825rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

.jh-step-arrow {
  color: #cbd5e1;
  font-size: 1.2rem;
  margin-top: 30px;
}

/* Why Choose Section */
.jh-why-banner {
  background: #013d20;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.jh-why-content {
  padding: 40px;
  color: white;
}

.jh-tag-pill-dark {
  font-size: 0.75rem;
  font-weight: 800;
  color: #4ade80;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}

.jh-why-title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.jh-why-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.jh-why-feature {
  text-align: left;
}

.jh-why-icon {
  font-size: 1.4rem;
  color: #4ade80;
  margin-bottom: 10px;
}

.jh-why-feature h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.jh-why-feature p {
  font-size: 0.75rem;
  color: #cbd5e1;
  line-height: 1.35;
  margin: 0;
}

.jh-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Service Areas & CTA Split Section */
.jh-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
}

.jh-area-card {
  background: #f8faf9;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.jh-area-desc {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 24px;
}

.jh-city-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 28px;
}

.jh-city-item {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jh-city-item i {
  color: var(--primary-green);
}

.jh-map-graphic-pin {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.85;
}

.jh-map-pin-badge {
  background: white;
  color: var(--primary-green);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.jh-cta-card {
  background: var(--primary-green);
  color: white;
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(1, 92, 48, 0.2);
}

.jh-cta-card h3 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.25;
}

.jh-cta-card p {
  font-size: 0.95rem;
  color: #d1fae5;
  margin-bottom: 20px;
}

.jh-cta-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.jh-cta-checklist li {
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jh-cta-checklist i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.jh-cta-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-jh-white {
  background: white;
  color: var(--primary-green);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-jh-white:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.btn-jh-dark-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-jh-dark-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.jh-cta-phone {
  font-size: 0.9rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jh-sofa-outline-graphic {
  position: absolute;
  bottom: -20px;
  right: 10px;
  font-size: 8rem;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
}

/* What Our Customers Say */
.jh-testimonials-slider-wrapper {
  position: relative;
  margin-top: 30px;
}

.jh-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.jh-testimonial-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.jh-testi-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.jh-testi-text {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
}

.jh-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jh-testi-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.jh-testi-author strong {
  display: block;
  font-size: 0.875rem;
  color: #0f172a;
}

.jh-testi-author span {
  font-size: 0.75rem;
  color: #64748b;
}

.jh-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #0f172a;
  transition: all 0.2s ease;
}

.jh-slider-arrow:hover {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
}

.jh-slider-arrow.prev { left: -22px; }
.jh-slider-arrow.next { right: -22px; }

/* ==========================================================================
   GLOBAL MASTER FAQ ACCORDIONS (ALL PAGES & BLOG POSTS)
   ========================================================================== */
.jh-faq-grid,
.svc-faq-grid,
.fur-faq-grid,
.res-faq-grid,
.article-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin: 32px 0;
  text-align: left;
}

.jh-faq-card,
.svc-faq-card,
.fur-faq-card,
.res-faq-card,
.srv-faq-item,
.faq-accordion-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.jh-faq-card:hover,
.svc-faq-card:hover,
.fur-faq-card:hover,
.res-faq-card:hover,
.srv-faq-item:hover,
.faq-accordion-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.jh-faq-card.active,
.svc-faq-card.active,
.fur-faq-card.active,
.res-faq-card.active,
.srv-faq-item.active,
.faq-accordion-item.active {
  border-color: var(--primary-green, #16a34a);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.08);
}

/* Accordion Header / Question */
.jh-faq-header,
.svc-faq-card h4,
.fur-faq-card h4,
.res-faq-card h4,
.srv-faq-q,
.faq-accordion-header {
  padding: 18px 22px;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  user-select: none;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.4 !important;
  background: transparent;
  transition: color 0.2s ease, background 0.2s ease;
  border: none !important;
}

.jh-faq-header:hover,
.svc-faq-card h4:hover,
.fur-faq-card h4:hover,
.res-faq-card h4:hover,
.srv-faq-q:hover,
.faq-accordion-header:hover {
  color: var(--primary-green, #16a34a) !important;
}

.jh-faq-card.active .jh-faq-header,
.svc-faq-card.active h4,
.fur-faq-card.active h4,
.res-faq-card.active h4,
.srv-faq-item.active .srv-faq-q,
.faq-accordion-item.active .faq-accordion-header {
  color: var(--primary-green, #16a34a) !important;
}

/* Accordion Icons (+ / Chevron) */
.jh-faq-icon,
.svc-faq-card h4 i,
.fur-faq-card h4 i,
.res-faq-card h4 i,
.srv-faq-q i,
.faq-accordion-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #f0fdf4;
  color: var(--primary-green, #16a34a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.jh-faq-card.active .jh-faq-icon,
.svc-faq-card.active h4 i,
.fur-faq-card.active h4 i,
.res-faq-card.active h4 i,
.srv-faq-item.active .srv-faq-q i,
.faq-accordion-item.active .faq-accordion-icon {
  transform: rotate(45deg);
  background: var(--primary-green, #16a34a);
  color: #ffffff;
}

/* For chevrons (rotate 180deg instead of 45deg) */
.jh-faq-icon i.fa-chevron-down,
.faq-accordion-icon i.fa-chevron-down {
  transition: transform 0.3s ease;
}
.jh-faq-card.active .jh-faq-icon i.fa-chevron-down,
.faq-accordion-item.active .faq-accordion-icon i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Accordion Content / Body */
.jh-faq-body,
.svc-faq-card p,
.fur-faq-card p,
.res-faq-card p,
.srv-faq-a,
.faq-accordion-body {
  padding: 0 22px 18px 22px;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
  display: none;
  animation: faqSlideDown 0.25s ease-out;
}

.jh-faq-card.active .jh-faq-body,
.svc-faq-card.active p,
.fur-faq-card.active p,
.res-faq-card.active p,
.srv-faq-item.active .srv-faq-a,
.faq-accordion-item.active .faq-accordion-body {
  display: block;
}

.faq-accordion-body p {
  margin-bottom: 12px;
}
.faq-accordion-body p:last-child {
  margin-bottom: 0;
}

@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Blog Single Article Accordion Container */
.single-article-content .article-faq-container {
  margin: 36px 0 44px;
}
.single-article-content .article-faq-container h2 {
  margin-bottom: 12px;
}
.single-article-content .article-faq-container .faq-intro-text {
  color: #64748b;
  font-size: 1.02rem;
  margin-bottom: 24px;
}

/* Footer Additions */
.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icons a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.footer-social-icons a:hover {
  background: var(--light-green);
  color: white;
}

.footer-spec-links a.active-green {
  color: var(--light-green) !important;
  font-weight: 700;
}

/* In-Depth Article Guide Styles */
.jh-article-section {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.jh-article-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.jh-article-header {
  text-align: center;
  margin-bottom: 48px;
}

.jh-article-header .jh-section-tag {
  display: inline-block;
  background: #e8f5e9;
  color: var(--primary-green);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 9999px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.jh-article-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.jh-article-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}

.jh-article-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
  line-height: 1.3;
}

.jh-article-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-top: 36px;
  margin-bottom: 16px;
  line-height: 1.35;
}

.jh-article-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f3b2f;
  margin-top: 24px;
  margin-bottom: 12px;
}

.jh-article-content p {
  margin-bottom: 22px;
}

.jh-article-content ul, .jh-article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.jh-article-content li {
  margin-bottom: 10px;
  line-height: 1.75;
}

.jh-content-box {
  background: #f8fafc;
  border-left: 4px solid var(--primary-green);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.jh-content-box h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-green);
  font-weight: 800;
}

.jh-callout-box {
  background: linear-gradient(135deg, #0a3325, #124d35);
  color: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  margin: 40px 0;
  box-shadow: 0 10px 25px rgba(10, 51, 37, 0.15);
}

.jh-callout-box h3, .jh-callout-box h4 {
  color: #ffffff;
  margin-top: 0;
}

.jh-callout-box p {
  color: #cbd5e1;
  margin-bottom: 20px;
}

.jh-table-responsive {
  overflow-x: auto;
  margin: 36px 0;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.jh-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.jh-table th {
  background: #0d3b2e;
  color: #ffffff;
  padding: 16px 20px;
  font-weight: 700;
}

.jh-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  line-height: 1.6;
}

.jh-table tr:nth-child(even) td {
  background: #f8fafc;
}

.jh-table tr:hover td {
  background: #f0fdf4;
}

.jh-article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.jh-article-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.jh-article-card-icon {
  width: 44px;
  height: 44px;
  background: #e8f5e9;
  color: var(--primary-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.jh-article-card h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: #0f172a;
}

.jh-article-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #64748b;
}

.jh-pro-tip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fefce8;
  border: 1px solid #fef08a;
  border-radius: 12px;
  padding: 20px;
  margin: 28px 0;
}

.jh-pro-tip-icon {
  color: #ca8a04;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.jh-pro-tip p {
  margin-bottom: 0;
  color: #713f12;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Responsive updates for new sections */
@media (max-width: 1024px) {
  .furniture-hero-grid { grid-template-columns: 1fr; }
  .jh-types-grid { grid-template-columns: repeat(3, 1fr); }
  .jh-why-banner { grid-template-columns: 1fr; }
  .jh-why-features-grid { grid-template-columns: repeat(3, 1fr); }
  .jh-split-grid { grid-template-columns: 1fr; }
  .jh-testimonials-grid { grid-template-columns: 1fr; }
  .jh-faq-grid { grid-template-columns: 1fr; }
  .jh-article-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .jh-types-grid { grid-template-columns: 1fr 1fr; }
  .jh-steps-grid { flex-direction: column; }
  .jh-step-arrow { transform: rotate(90deg); margin: 10px 0; }
  .jh-why-features-grid { grid-template-columns: 1fr 1fr; }
  .jh-eco-banner { flex-direction: column; text-align: center; }
  .jh-eco-left { flex-direction: column; text-align: center; }
  .jh-hero-title { font-size: 2.2rem; }
  .jh-article-section { padding: 48px 0; }
  .jh-article-header h2 { font-size: 1.7rem; }
  .jh-article-content h2 { font-size: 1.45rem; }
  .jh-article-content h3 { font-size: 1.25rem; }
  .jh-callout-box { padding: 24px 20px; }
}

/* ==========================================================================
   MASTER MOBILE RESPONSIVENESS SUITE (JUNK HARBOR)
   ========================================================================== */

/* Universal Responsive Table Wrapper */
.table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.table-responsive table {
  width: 100% !important;
  min-width: 580px;
  margin: 0 !important;
  border: none !important;
}

/* Fluid Media & Images */
img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* Mobile Sticky Bottom Floating Action Bar */
.jh-mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  z-index: 9990;
  padding: 10px 16px;
  border-top: 1px solid #e2e8f0;
  gap: 12px;
}

.jh-mobile-bottom-bar a,
.jh-mobile-bottom-bar button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.jh-mob-call-btn {
  background: #015c30;
  color: #ffffff !important;
}

.jh-mob-quote-btn {
  background: #22c55e;
  color: #01361c !important;
}

.jh-mobile-bottom-bar a:active,
.jh-mobile-bottom-bar button:active {
  transform: scale(0.98);
}

/* Mobile Quick Call Button */
.mobile-quick-call {
  display: none;
}

/* Tablet & Mobile Nav Drawer (<= 992px) */
@media (max-width: 992px) {
  .top-bar-spec {
    display: none;
  }

  .header-navbar {
    height: 68px;
  }

  .jh-main-logo-img {
    height: 52px;
    max-width: 175px;
  }

  .mobile-quick-call {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #015c30;
    color: #ffffff !important;
    border-radius: 8px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .mobile-quick-call:hover,
  .mobile-quick-call:active {
    background: #014222;
    transform: scale(0.96);
  }

  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #e6f4ea;
    color: var(--primary-green);
    border-radius: 8px;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .mobile-menu-btn:hover,
  .mobile-menu-btn.active {
    background: #015c30;
    color: #ffffff;
  }

  .header-cta-group .btn-jh-pill,
  .desktop-only-btn {
    display: none !important;
  }

  /* Slide-Down Mobile Navigation Drawer */
  .nav-menu-spec {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 100px;
    overflow-y: auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
  }

  .nav-menu-spec.active {
    transform: translateX(0);
  }

  .nav-menu-spec > li {
    width: 100%;
    display: block;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-menu-spec a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 4px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
  }

  .nav-menu-spec a:hover,
  .nav-menu-spec a.active {
    color: #015c30;
  }

  /* Mobile Dropdowns */
  .nav-menu-spec .has-dropdown .dropdown-menu-spec {
    position: static;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    border-radius: 8px;
    padding: 6px 14px;
    margin-bottom: 10px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-menu-spec .has-dropdown.open .dropdown-menu-spec {
    display: block;
  }

  .nav-menu-spec .has-dropdown.open > a i.fa-chevron-down {
    transform: rotate(180deg);
    color: #015c30;
  }

  .nav-menu-spec .dropdown-menu-spec li a {
    padding: 10px 4px;
    font-size: 0.95rem;
    color: #475569;
  }

  /* Hero & Container Grid Adjustments */
  .hero-grid-spec,
  .hero-grid,
  .furniture-hero-grid,
  .jh-split-grid,
  .service-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .hero-headline-spec,
  .section-headline {
    font-size: 2rem !important;
  }

  .footer-spec-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 36px 24px !important;
  }
}

/* Smartphone Adjustments (<= 768px) */
@media (max-width: 768px) {
  body {
    padding-bottom: 65px; /* Reserve space for mobile bottom bar */
  }

  .jh-mobile-bottom-bar {
    display: flex;
  }

  .container {
    width: 94%;
  }

  .hero-headline-spec,
  .section-headline,
  .jh-hero-title {
    font-size: 1.75rem !important;
    line-height: 1.25 !important;
  }

  .hero-desc-spec,
  .section-desc {
    font-size: 0.95rem !important;
  }

  .hero-btn-group,
  .cta-button-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-btn-group a,
  .hero-btn-group button,
  .cta-button-group a,
  .cta-button-group button {
    width: 100%;
    justify-content: center;
  }

  .footer-spec-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  /* Single Article & Blog Responsiveness */
  .single-article-container {
    padding: 24px 16px !important;
    border-radius: 12px !important;
  }

  .single-title {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
  }

  .single-article-content {
    font-size: 1rem !important;
    line-height: 1.75 !important;
  }

  .single-article-content h2 {
    font-size: 1.35rem !important;
    margin-top: 36px !important;
  }

  .single-article-content h3 {
    font-size: 1.18rem !important;
    margin-top: 24px !important;
  }

  .article-cta-card {
    padding: 26px 18px !important;
  }

  .article-cta-card h3 {
    font-size: 1.35rem !important;
  }

  .article-cta-btn {
    width: 100%;
    justify-content: center;
  }

  /* Modal Responsiveness */
  .modal-card {
    width: 95% !important;
    max-width: 95% !important;
    padding: 28px 18px !important;
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* Extra Small Screens (<= 480px) */
@media (max-width: 480px) {
  .header-navbar {
    height: 62px;
  }

  .jh-main-logo-img {
    height: 46px;
    max-width: 145px;
  }

  .mobile-quick-call,
  .mobile-menu-btn {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .nav-menu-spec {
    top: 62px;
    height: calc(100vh - 62px);
  }

  .single-title {
    font-size: 1.4rem !important;
  }

  .sitemap-hero-title {
    font-size: 1.85rem !important;
  }
}



