/* NorthernJ Trading Inc — Handy.com-inspired */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --cyan: #00CDED;
  --cyan-hover: #07DEFF;
  --green: #98CD52;
  --teal: #68EED7;
  --navy: #234B84;
  --text: #434343;
  --text-light: #6f6f6f;
  --bg: #F4F4F4;
  --white: #ffffff;
  --footer: #1D1D1D;
  --border: #e0e0e0;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wide: 1200px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.hj-wrap { max-width: var(--wide); margin: 0 auto; padding: 0 24px; }

/* Header */
.hj-header {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 500;
}
.hj-header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 8px;
}
.hj-logo img { height: 32px; width: auto; }
.hj-nav { display: flex; align-items: center; margin-left: 24px; flex: 1; gap: 2px; }
.hj-nav-item { position: relative; }
.hj-nav-item > a, .hj-nav-item > span {
  display: block; padding: 8px 14px; font-size: 14px; font-weight: 600;
  color: var(--text); cursor: pointer;
}
.hj-nav-item > a:hover, .hj-nav-item:hover > span { color: var(--cyan); }

.hj-mega {
  position: absolute; top: 100%; left: 0; min-width: 640px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 24px 28px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.18s; z-index: 200;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hj-nav-item:hover .hj-mega { opacity: 1; visibility: visible; transform: none; }
.hj-mega-col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 10px;
}
.hj-mega-col a {
  display: block; padding: 6px 0; font-size: 14px; font-weight: 500; color: var(--text);
}
.hj-mega-col a:hover { color: var(--cyan); }

.hj-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.18s; z-index: 200;
}
.hj-nav-item:hover .hj-dropdown { opacity: 1; visibility: visible; transform: none; }
.hj-dropdown a { display: block; padding: 10px 18px; font-size: 14px; font-weight: 500; }
.hj-dropdown a:hover { background: var(--bg); color: var(--cyan); }

.hj-header-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.hj-header-link { font-size: 14px; font-weight: 600; color: var(--text); padding: 8px 12px; }
.hj-header-link:hover { color: var(--cyan); }
.hj-menu-btn {
  display: none; background: none; border: none; font-size: 14px; font-weight: 700;
  cursor: pointer; color: var(--text); padding: 8px 12px;
}

.hj-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-weight: 700; font-size: 14px; border: none; cursor: pointer;
  border-radius: var(--radius); transition: background 0.15s, transform 0.15s; white-space: nowrap;
}
.hj-btn-cyan { background: var(--cyan); color: var(--white) !important; padding: 12px 22px; }
.hj-btn-cyan:hover { background: var(--cyan-hover); }
.hj-btn-outline { background: transparent; color: var(--cyan) !important; border: 2px solid var(--cyan); padding: 10px 20px; }
.hj-btn-outline:hover { background: rgba(0,205,237,0.08); }
.hj-btn-navy { background: var(--navy); color: var(--white) !important; padding: 12px 22px; }
.hj-btn-navy:hover { background: #1a3a6a; }
.hj-btn-lg { padding: 14px 28px; font-size: 15px; }

/* Drawer */
.hj-drawer { position: fixed; inset: 0; z-index: 900; pointer-events: none; }
.hj-drawer.open { pointer-events: auto; }
.hj-drawer-bg {
  position: absolute; inset: 0; background: rgba(0,0,0,0.45);
  opacity: 0; transition: opacity 0.25s;
}
.hj-drawer.open .hj-drawer-bg { opacity: 1; }
.hj-drawer-panel {
  position: absolute; top: 0; right: 0; width: min(360px, 92vw); height: 100%;
  background: var(--white); padding: 24px; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.28s;
}
.hj-drawer.open .hj-drawer-panel { transform: none; }
.hj-drawer-close {
  background: none; border: none; font-size: 28px; cursor: pointer;
  color: var(--text); margin-bottom: 16px; line-height: 1;
}
.hj-drawer-group { margin-bottom: 24px; }
.hj-drawer-group h3 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 8px;
}
.hj-drawer-group a { display: block; padding: 10px 0; font-size: 15px; font-weight: 600; border-bottom: 1px solid var(--bg); }

/* Hero */
.hj-hero {
  background: var(--bg); padding: 56px 24px 48px; text-align: center;
}
.hj-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.15;
  color: var(--text); max-width: 720px; margin: 0 auto 16px;
}
.hj-hero-lead {
  font-size: 17px; color: var(--text-light); max-width: 560px; margin: 0 auto 32px;
}

.hj-booking {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  max-width: 680px; margin: 0 auto; overflow: hidden; border: 1px solid var(--border);
}
.hj-booking-field { flex: 1; min-width: 180px; text-align: left; border-right: 1px solid var(--border); }
.hj-booking-field label {
  display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-light); padding: 14px 16px 0;
}
.hj-booking-field select, .hj-booking-field input {
  width: 100%; border: none; padding: 6px 16px 14px; font-family: var(--font);
  font-size: 15px; font-weight: 500; background: transparent; color: var(--text); outline: none;
}
.hj-booking .hj-btn-cyan { border-radius: 0; padding: 20px 28px; align-self: stretch; font-size: 15px; }
.hj-hero-note { font-size: 13px; color: var(--text-light); margin-top: 14px; }

/* Shortcut tiles */
.hj-shortcuts { padding: 0 24px 48px; margin-top: -24px; }
.hj-shortcut-grid {
  max-width: 680px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hj-shortcut {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  border: 1px solid var(--border); transition: transform 0.15s, box-shadow 0.15s;
}
.hj-shortcut:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hj-shortcut-icon {
  width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.hj-shortcut-icon.green { background: rgba(152,205,82,0.2); }
.hj-shortcut-icon.teal { background: rgba(104,238,215,0.25); }
.hj-shortcut h3 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.hj-shortcut p { font-size: 13px; color: var(--text-light); }

/* Section */
.hj-section { padding: 56px 24px; }
.hj-section.gray { background: var(--bg); }
.hj-section-head { margin-bottom: 32px; }
.hj-section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.hj-section-head p { font-size: 15px; color: var(--text-light); max-width: 640px; }

/* Service cards */
.hj-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hj-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s;
}
.hj-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.hj-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg); }
.hj-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.hj-card:hover .hj-card-img img { transform: scale(1.04); }
.hj-card-body { padding: 18px 20px 22px; }
.hj-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.hj-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.5; margin-bottom: 12px; }
.hj-link { font-size: 14px; font-weight: 700; color: var(--cyan); }
.hj-link:hover { color: var(--cyan-hover); }

/* Project cards */
.hj-project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hj-project {
  display: block; border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 3/4; background: var(--bg);
}
.hj-project img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.hj-project:hover img { transform: scale(1.05); }
.hj-project-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 48px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: var(--white); font-size: 15px; font-weight: 700;
}

/* Trust strip */
.hj-trust {
  padding: 40px 24px; background: var(--white); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hj-trust-grid {
  max-width: var(--wide); margin: 0 auto; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.hj-trust-item strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.hj-trust-item span { font-size: 13px; color: var(--text-light); line-height: 1.4; }

/* Guarantee band */
.hj-guarantee {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--navy); color: var(--white); overflow: hidden;
}
.hj-guarantee-img { min-height: 280px; }
.hj-guarantee-img img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.hj-guarantee-body {
  padding: 48px 56px; display: flex; flex-direction: column; justify-content: center;
}
.hj-guarantee-body h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.hj-guarantee-body p { font-size: 15px; opacity: 0.9; line-height: 1.7; margin-bottom: 20px; max-width: 440px; }
.hj-guarantee-body .hj-btn-cyan { align-self: flex-start; }

/* Pro / partners */
.hj-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hj-split-card {
  border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white); border: 1px solid var(--border); min-height: 220px;
}
.hj-split-card img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.hj-split-body { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.hj-split-body h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.hj-split-body p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }

/* Popular searches */
.hj-seo { padding: 48px 24px; background: var(--bg); }
.hj-seo h2 { font-size: 1.25rem; font-weight: 800; margin-bottom: 20px; }
.hj-tag-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.hj-tag {
  display: inline-block; padding: 10px 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--text); transition: all 0.15s;
}
.hj-tag:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,205,237,0.06); }

/* Footer */
.hj-footer { background: var(--footer); color: rgba(255,255,255,0.75); padding: 56px 24px 32px; }
.hj-footer-grid {
  max-width: var(--wide); margin: 0 auto 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.hj-footer-col h4 {
  font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.hj-footer-col a {
  display: block; font-size: 14px; padding: 5px 0; color: rgba(255,255,255,0.65);
}
.hj-footer-col a:hover { color: var(--cyan); }
.hj-footer-bottom {
  max-width: var(--wide); margin: 0 auto; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.hj-footer-bottom a { color: rgba(255,255,255,0.55); }
.hj-footer-bottom a:hover { color: var(--cyan); }

/* Inner pages */
.hj-page-hero {
  background: var(--bg); padding: 48px 24px; border-bottom: 1px solid var(--border);
}
.hj-page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 10px; }
.hj-page-hero p { font-size: 16px; color: var(--text-light); max-width: 640px; }
.hj-breadcrumb { font-size: 13px; font-weight: 600; color: var(--cyan); margin-bottom: 12px; }
.hj-content { padding: 48px 24px 64px; }
.hj-content p { color: var(--text-light); line-height: 1.75; max-width: 680px; margin-bottom: 16px; }
.hj-content img.hero-img {
  width: 100%; max-width: 800px; border-radius: var(--radius-lg); margin-bottom: 28px;
}
.hj-notice {
  display: inline-block; margin-top: 16px; padding: 10px 16px;
  background: var(--bg); border-radius: var(--radius); font-size: 13px; font-weight: 600;
  color: var(--text-light);
}

.hj-form { max-width: 480px; }
.hj-form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.hj-form input, .hj-form textarea, .hj-form select {
  width: 100%; padding: 12px 14px; margin-bottom: 16px; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: 15px;
}
.hj-form textarea { min-height: 120px; resize: vertical; }
.hj-form-thanks { display: none; margin-top: 12px; font-size: 14px; color: var(--green); font-weight: 600; }
.hj-form.sent .hj-form-thanks { display: block; }

.hj-content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }

/* Responsive */
@media (max-width: 1024px) {
  .hj-card-grid, .hj-project-grid { grid-template-columns: repeat(2, 1fr); }
  .hj-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hj-split { grid-template-columns: 1fr; }
  .hj-guarantee { grid-template-columns: 1fr; }
  .hj-content-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hj-nav { display: none; }
  .hj-menu-btn { display: block; }
  .hj-header-link.hide-mobile { display: none; }
  .hj-shortcut-grid { grid-template-columns: 1fr; }
  .hj-card-grid, .hj-project-grid, .hj-trust-grid, .hj-footer-grid, .hj-content-grid { grid-template-columns: 1fr; }
  .hj-split-card { grid-template-columns: 1fr; }
  .hj-guarantee-body { padding: 32px 24px; }
  .hj-mega { min-width: 280px; grid-template-columns: 1fr; }
}
