/* selfstorageunits.ie — main stylesheet
   Palette: Storage Blue #1E4B6B · CTA Orange #E8622C · Neutral #F4F7FA
   ------------------------------------------------------------------ */

:root {
  --blue:        #1E4B6B;
  --blue-mid:    #2B5F85;
  --blue-light:  #3A7AA8;
  --blue-pale:   #EAF2F8;
  --orange:      #E8622C;
  --orange-dark: #C04D1E;
  --orange-light:#FDF0EB;
  --bg:          #F4F7FA;
  --bg-white:    #FFFFFF;
  --text:        #1A2A38;
  --text-mid:    #4A5C6B;
  --text-light:  #7A8C9A;
  --border:      #DDE5EE;
  --shadow-sm:   0 1px 4px rgba(30,75,107,0.08);
  --shadow-md:   0 4px 16px rgba(30,75,107,0.12);
  --radius:      8px;
  --radius-lg:   14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-light); }

img { max-width: 100%; display: block; }

/* ── Container ─────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover {
  background: var(--orange-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,98,44,0.35);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover {
  background: var(--blue-mid);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30,75,107,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--blue);
}
.btn-white:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

/* ── Header ─────────────────────────────────────────── */
.site-header {
  background: var(--blue);
  box-shadow: 0 2px 8px rgba(30,75,107,0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; line-height: 1; }
.logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}
.logo-dot { color: var(--orange); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.main-nav a.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 7px 14px;
}
.main-nav a.nav-cta:hover {
  background: var(--orange-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 6px;
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, #1a3f5c 100%);
  color: #fff;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero h1 span { color: #f0a86b; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ── City Hub Strip ─────────────────────────────────── */
.city-strip {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow-x: auto;
}
.city-strip-inner {
  display: flex;
  align-items: stretch;
  white-space: nowrap;
  min-height: 52px;
}
.city-strip-inner a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-mid);
  border-right: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.city-strip-inner a:hover {
  background: var(--blue-pale);
  color: var(--blue);
}
.city-strip-inner a:first-child { padding-left: 0; }

/* ── Section headings ───────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 640px;
}

/* ── City cards grid ────────────────────────────────── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.city-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.city-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
  transform: translateY(-2px);
  color: var(--text);
}
.city-card-icon { font-size: 1.6rem; margin-bottom: 4px; }
.city-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0;
}
.city-card-count {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}
.city-card-price {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 600;
  margin-top: 4px;
}
.city-card-arrow {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: auto;
  padding-top: 10px;
}

/* ── Operator cards ─────────────────────────────────── */
.operator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.operator-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.operator-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}

.operator-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.operator-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.operator-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 2px;
}
.operator-card .op-locations {
  font-size: 0.8rem;
  color: var(--text-light);
}
.operator-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 14px;
}
.op-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.op-tag {
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}
.op-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.op-link:hover { color: var(--orange-dark); }

/* ── Guide cards ────────────────────────────────────── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.guide-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.guide-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
  color: var(--text);
}
.guide-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.guide-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}
.guide-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.guide-card-read {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
}

/* ── Lead capture banner ────────────────────────────── */
.lead-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  color: #fff;
  padding: 60px 0;
}
.lead-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lead-banner h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.25;
}
.lead-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
}
.lead-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.lead-form h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}
.lead-form .form-group {
  margin-bottom: 14px;
}
.lead-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 5px;
}
.lead-form input,
.lead-form select {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.lead-form input::placeholder { color: rgba(255,255,255,0.45); }
.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.18);
}
.lead-form select option { color: var(--text); background: #fff; }
.lead-form .btn-orange {
  width: 100%;
  padding: 13px;
  font-size: 1rem;
  margin-top: 4px;
}

/* ── Trust bar ──────────────────────────────────────── */
.trust-bar {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-mid);
  font-weight: 600;
}
.trust-item span:first-child { font-size: 1.1rem; }

/* ── Pricing table ──────────────────────────────────── */
.pricing-section { background: var(--bg-white); padding: 60px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
}
.pricing-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.pricing-card .price {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.pricing-card .price-unit {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}
.pricing-card .price-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.4;
}

/* ── How it works ───────────────────────────────────── */
.how-section { padding: 64px 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: steps;
}
.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  counter-increment: steps;
}
.step-card::before {
  content: counter(steps);
  position: absolute;
  top: 22px;
  right: 22px;
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon { font-size: 1.7rem; margin-bottom: 14px; }
.step-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}
.step-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Site sections layout ───────────────────────────── */
.section { padding: 64px 0; }
.section--grey { background: var(--bg); }
.section--white { background: var(--bg-white); }

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 32px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
  font-size: 0.83rem;
  line-height: 1.65;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  padding: 3px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.footer-bottom nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom nav a {
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-bottom nav a:hover { color: rgba(255,255,255,0.9); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; gap: 4px; }
  .nav-toggle { display: block; }
  .site-header .container { flex-wrap: wrap; height: auto; padding: 12px 24px; }
  .main-nav.open {
    width: 100%;
    padding: 8px 0 12px;
  }
  .lead-banner-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .hero { padding: 56px 0 50px; }
  .hero-stats { gap: 20px; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 18px; justify-content: flex-start; }
}
