/* ── North Hamilton Rentals — Embedded Fonts + Full Stylesheet ── */

/* Nunito — headings */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTQ3j6zbXWjgeg.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTO9j6zbXWjgeg.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTK6j6zbXWjgeg.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTO7j6zbXWjgeg.woff2') format('woff2');
}

/* Cabin — body */
@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/cabin/v27/u-4i0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EH7alx_c.woff2') format('woff2');
}
@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/cabin/v27/u-4i0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EH7alwfc9BIxxkV2EH7alx_c.woff2') format('woff2');
}
@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/cabin/v27/u-4i0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EH7alx_c.woff2') format('woff2');
}

:root {
  --orange:    #F97316;
  --orange-dk: #EA6500;
  --orange-lt: #FFF3E8;
  --navy:      #1E3A5F;
  --navy-lt:   #2E5485;
  --sky:       #EBF4FD;
  --gray-dk:   #374151;
  --gray-md:   #6B7280;
  --gray-lt:   #F3F4F6;
  --white:     #FFFFFF;
  --green:     #16A34A;
  --green-lt:  #DCFCE7;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(30,58,95,0.12);
  --shadow-sm: 0 2px 8px rgba(30,58,95,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Cabin', 'Segoe UI', system-ui, sans-serif;
  color: var(--gray-dk);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1,h2,h3,h4 {
  font-family: 'Nunito', 'Trebuchet MS', system-ui, sans-serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 900; }
h2 { font-size: clamp(1.45rem, 3vw, 1.95rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { color: var(--gray-dk); line-height: 1.7; }
a  { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dk); }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 68px 0; }
.section-alt  { background: var(--sky); }
.section-dark { background: var(--navy); }
.section-orange { background: var(--orange); }

.section-heading { text-align: center; margin-bottom: 46px; }
.section-heading h2 { margin-bottom: 10px; }
.section-heading p  { color: var(--gray-md); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-dark .section-heading h2 { color: var(--white); }
.section-dark .section-heading p  { color: rgba(255,255,255,0.75); }

/* ── Nav ── */
nav {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(30,58,95,0.08), 0 2px 12px rgba(30,58,95,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-dk);
  padding: 6px 11px;
  border-radius: 7px;
  transition: all .18s;
  text-decoration: none;
}
.nav-links a:hover { background: var(--sky); color: var(--navy); }
.nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
}
.nav-cta:hover { background: var(--orange-dk) !important; color: var(--white) !important; }
.nav-phone {
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 800 !important;
  font-size: .95rem !important;
  color: var(--navy) !important;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 800;
  font-size: .98rem;
  cursor: pointer;
  transition: all .18s;
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
}
.btn-primary  { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover  { background: var(--orange-dk); border-color: var(--orange-dk); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(249,115,22,.32); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-white  { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn-white:hover { background: var(--orange-lt); color: var(--orange-dk); }
.btn-lg { padding: 15px 34px; font-size: 1.07rem; }
.btn-sm { padding: 9px 18px; font-size: .88rem; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid rgba(30,58,95,0.06);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(30,58,95,.15); }
.card-body { padding: 24px; }
.card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Badges ── */
.badge {
  display: inline-block;
  font-size: .73rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge-orange { background: var(--orange-lt); color: var(--orange-dk); }
.badge-navy   { background: var(--sky); color: var(--navy); }
.badge-green  { background: var(--green-lt); color: var(--green); }

/* ── Rate table ── */
.rate-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.rate-table th { background: var(--navy); color: var(--white); font-family: 'Nunito', system-ui, sans-serif; font-weight: 700; padding: 14px 16px; text-align: left; font-size: .88rem; letter-spacing: .02em; }
.rate-table td { padding: 13px 16px; font-size: .94rem; border-bottom: 1px solid #E5E7EB; }
.rate-table tr:last-child td { border-bottom: none; }
.rate-table tr:nth-child(even) td { background: var(--sky); }
.rate-table .price { font-family: 'Nunito', system-ui, sans-serif; font-weight: 800; color: var(--orange); font-size: 1.05rem; }
.rate-table .highlight td { background: var(--orange-lt) !important; }

/* ── Checklist ── */
.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; font-size: .96rem; border-bottom: 1px solid rgba(0,0,0,0.04); }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: "✓"; font-weight: 900; color: var(--orange); flex-shrink: 0; margin-top: 2px; font-size: 1rem; }

/* ── Callout ── */
.callout {
  background: var(--orange-lt);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.callout p { color: var(--gray-dk); font-size: .94rem; margin: 0; }
.callout strong { color: var(--orange-dk); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid #E5E7EB; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .15s;
}
.faq-q:hover { color: var(--orange); }
.faq-icon { font-size: 1.4rem; color: var(--orange); flex-shrink: 0; transition: transform .25s; line-height: 1; }
.faq-a { display: none; padding: 0 0 18px; color: var(--gray-dk); font-size: .96rem; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── Forms ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--navy); letter-spacing: .01em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius);
  font-family: 'Cabin', system-ui, sans-serif;
  font-size: .96rem;
  color: var(--gray-dk);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5a8c 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(249,115,22,.20) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 span { color: var(--orange); }
.hero .sub {
  color: rgba(255,255,255,.85);
  font-size: 1.12rem;
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.65;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-badge {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: .84rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

/* ── Stats bar ── */
.stats-bar { background: var(--orange); padding: 30px 0; }
.stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat { text-align: center; color: var(--white); }
.stat-num { font-family: 'Nunito', system-ui, sans-serif; font-weight: 900; font-size: 2.1rem; display: block; line-height: 1; }
.stat-label { font-size: .82rem; opacity: .88; margin-top: 4px; display: block; }

/* ── Area tags ── */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area-tag {
  background: var(--sky);
  color: var(--navy);
  border: 1px solid rgba(30,58,95,.15);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Step list ── */
.step-item { display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-family: 'Nunito', system-ui, sans-serif; font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 12px rgba(249,115,22,.3);
}
.step-body h3 { margin-bottom: 5px; }
.step-body p { font-size: .94rem; color: var(--gray-md); }

/* ── Page hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a5a8c 100%);
  padding: 52px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.55rem, 4vw, 2.3rem); position: relative; z-index: 1; }
.page-hero p  { color: rgba(255,255,255,.8); margin-top: 10px; font-size: 1.04rem; position: relative; z-index: 1; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 12px; font-size: .84rem; position: relative; z-index: 1; }
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.35); }
.breadcrumb strong { color: var(--orange); }

/* ── Why Us icons section ── */
.why-icon-wrap {
  text-align: center;
  padding: 24px 16px;
  border-radius: 14px;
  transition: background .18s;
}
.why-icon-wrap:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.why-icon { font-size: 2.6rem; margin-bottom: 12px; display: block; }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 52px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { color: var(--white); font-family: 'Nunito', system-ui, sans-serif; font-size: 1.25rem; margin-bottom: 12px; }
.footer-brand h3 span { color: var(--orange); }
.footer-brand p { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.65); }
.footer-col h4 { color: rgba(255,255,255,.45); font-size: .78rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.7); font-size: .9rem; transition: color .15s; text-decoration: none; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .84rem;
  color: rgba(255,255,255,.4);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(30,58,95,.12);
    gap: 4px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding: 56px 0 52px; }
  .hero-btns { flex-direction: column; }
  .stats-inner { gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 48px 0; }
}
