/* =========================================
   Edgewater Commercial Park - Self Storage
   Clearwater / Belleair, FL
   ========================================= */

:root {
  --navy: #1a3a6b;
  --navy-dark: #102a50;
  --navy-deep: #0b1f3d;
  --blue: #2690d1;
  --blue-light: #55b0e3;
  --blue-pale: #e8f4fb;
  --cyan: #5fc1e6;
  --silver: #d7dbdf;
  --gray-50: #f7f9fb;
  --gray-100: #eef2f6;
  --gray-200: #dde3ea;
  --gray-300: #c3ccd5;
  --gray-500: #6b7a8a;
  --gray-700: #384a5c;
  --gray-900: #0f1b2b;
  --accent: #ffb020;
  --accent-strong: #f59200;
  --success: #1f9d55;
  --white: #ffffff;
  --max: 1200px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(12, 28, 54, 0.06);
  --shadow: 0 6px 22px rgba(12, 28, 54, 0.08);
  --shadow-lg: 0 20px 50px rgba(12, 28, 54, 0.14);
  --transition: 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--blue); }

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', -apple-system, sans-serif;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.75rem, 4.5vw, 3.25rem); overflow-wrap: break-word; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); overflow-wrap: break-word; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { margin: 0 0 1em; color: var(--gray-700); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 480px) { .container { padding: 0 20px; } }

.section { padding: 72px 0; }
.section-alt { background: var(--gray-50); }
.section-navy { background: var(--navy-deep); color: #e6ecf4; }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: #c8d4e0; }

.eyebrow {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-header p { font-size: 1.08rem; color: var(--gray-500); }

/* ======== Buttons ======== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: border-box;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(38, 144, 209, 0.35);
}
.btn-primary:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(38, 144, 209, 0.45); }
.btn-accent {
  background: var(--accent);
  color: var(--navy-deep);
  box-shadow: 0 8px 20px rgba(255, 176, 32, 0.35);
}
.btn-accent:hover { background: var(--accent-strong); color: var(--navy-deep); transform: translateY(-2px); }
.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 16px 26px; font-size: 1rem; }
@media (min-width: 640px) { .btn-lg { padding: 17px 34px; font-size: 1.05rem; } }

/* ======== Top bar ======== */
.topbar {
  background: var(--navy-deep);
  color: #d7e2ee;
  font-size: 0.78rem;
  padding: 9px 14px;
  text-align: center;
  letter-spacing: 0.02em;
}
@media (min-width: 480px) { .topbar { font-size: 0.84rem; } }
.topbar .dot { color: var(--blue-light); margin: 0 10px; }
.topbar .hide-sm { display: none; }
@media (min-width: 768px) { .topbar .hide-sm { display: inline; } }

/* ======== Header ======== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(12,28,54,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 20px;
  gap: 20px;
}
.header-logo img { height: 72px; width: auto; display: block; }
@media (min-width: 640px) { .header-logo img { height: 92px; } }
@media (min-width: 1024px) { .header-logo img { height: 108px; } }
.nav-desktop { display: none; gap: 20px; }
.nav-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 8px 2px;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--blue);
  border-radius: 3px;
}
@media (max-width: 1139px) {
  .header-inner { gap: 10px; padding: 10px 14px; }
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (min-width: 1140px) {
  .nav-desktop { display: flex; }
  .hamburger { display: none; }
}

/* Mobile nav */
.nav-mobile {
  position: fixed;
  top: 0; right: 0;
  width: 84%;
  max-width: 360px;
  height: 100vh;
  background: var(--white);
  padding: 64px 28px 40px;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.4,0,0.2,1);
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: var(--gray-100);
  color: var(--navy);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.nav-mobile-close:hover { background: var(--navy); color: var(--white); }
.nav-mobile a {
  color: var(--navy);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 13px 4px;
  border-bottom: 1px solid var(--gray-100);
}
.nav-mobile .mobile-phone {
  margin-top: 18px;
  background: var(--blue-pale);
  color: var(--navy);
  border-radius: 12px;
  padding: 16px;
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  border: none;
  display: block;
}
.nav-mobile .mobile-text {
  margin-top: 10px;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--blue);
  border-radius: 12px;
  padding: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  display: block;
}
.nav-mobile .mobile-cta-link {
  margin-top: 10px;
  background: var(--accent);
  color: var(--navy-deep);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-weight: 800;
  border: none;
  display: block;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 61, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 105;
}
.mobile-overlay.show { opacity: 1; pointer-events: auto; }

/* ======== Hero ======== */
.hero {
  position: relative;
  padding: 50px 0 72px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 65%, #1d4a86 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/gallery/IMG_7423.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: blur(1px);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,61,0.55) 0%, rgba(11,31,61,0.85) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #d9e6f4;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--cyan); }
.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--cyan); display: block; }
.hero-lede {
  font-size: 1.1rem;
  color: #d7e3f0;
  max-width: 620px;
  margin: 0 auto 28px;
}
.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #cfe1f2;
  font-size: 0.95rem;
  font-weight: 500;
}
.hero-trust-item i { color: var(--cyan); font-size: 1.1rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-actions .btn { flex: 1 1 auto; min-width: 0; }
@media (min-width: 480px) {
  .hero-actions .btn { flex: 0 1 auto; }
}

.hero-pricing-card {
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255,255,255,0.85);
  max-width: 100%;
}
@media (min-width: 480px) {
  .hero-pricing-card { padding: 28px 26px; }
}
.hero-pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--navy);
  text-align: center;
}
.hero-pricing-card .subtitle {
  color: var(--gray-500);
  font-size: 0.88rem;
  text-align: center;
  margin-bottom: 18px;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: var(--gray-50);
}
.price-row > div:first-child { min-width: 0; flex: 1; }
.price-row .label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
}
.price-row .size { font-size: 0.74rem; color: var(--gray-500); font-weight: 500; display: block; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.price-row .price {
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}
.price-row .price span { font-size: 0.78rem; font-weight: 600; color: var(--gray-500); }
.hero-pricing-card .note {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-200);
}
.hero-pricing-card .note strong { color: var(--navy); }

@media (min-width: 900px) {
  .hero { padding: 90px 0 100px; }
}

/* Pricing notes row */
.pricing-notes {
  margin-top: 40px;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.pricing-notes .note-item { display: flex; gap: 14px; align-items: flex-start; }
.pricing-notes .note-item i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  color: var(--blue);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-notes strong { color: var(--navy); display: block; margin-bottom: 2px; }
.pricing-notes span { color: var(--gray-700); font-size: 0.93rem; }
@media (min-width: 768px) {
  .pricing-notes { grid-template-columns: repeat(3, 1fr); }
}

/* ======== Pricing Section ======== */
.pricing-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.price-card h3 { font-size: 1.35rem; margin-bottom: 2px; }
.price-card .unit-size { color: var(--gray-500); font-weight: 600; margin-bottom: 16px; }
.price-card .price-big {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.price-card .price-big span { font-size: 1rem; color: var(--gray-500); font-weight: 600; }
.price-card .starting { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 20px; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  text-align: left;
  flex: 1;
}
.price-card ul li {
  padding: 10px 0;
  color: var(--gray-700);
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--gray-100);
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li i {
  color: var(--blue);
  font-size: 0.9rem;
  width: 16px;
  flex-shrink: 0;
}
.price-card .btn { width: 100%; }

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-assurance {
  margin-top: 40px;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.pricing-assurance .a-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pricing-assurance .a-item i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  color: var(--blue);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-assurance strong { color: var(--navy); display: block; margin-bottom: 2px; }
.pricing-assurance span { color: var(--gray-700); font-size: 0.93rem; }
@media (min-width: 768px) {
  .pricing-assurance { grid-template-columns: repeat(3, 1fr); }
}

/* ======== Features Grid ======== */
.features-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
.feature {
  background: var(--white);
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
}
.feature .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feature p { font-size: 0.95rem; color: var(--gray-500); margin: 0; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .features-grid.features-compact { grid-template-columns: repeat(4, 1fr); } }

/* ======== Split / Image + Text ======== */
.split {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: 1fr;
}
.split .split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split .split-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split h2 { margin-bottom: 16px; }
.split ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.split ul li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-700);
}
.split ul li i {
  color: var(--blue);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.split ul li strong { color: var(--navy); }
.split.reverse .split-image { order: -1; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 60px; }
  .split.reverse .split-image { order: 1; }
}

/* ======== Gallery ======== */
.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.gallery a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery a:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.gallery a:hover img { transform: scale(1.08); }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

/* ======== Map / Location ======== */
.location-block {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
.location-info {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.location-info h3 { margin-bottom: 16px; }
.info-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  align-items: flex-start;
  border-bottom: 1px solid var(--gray-100);
}
.info-row:last-child { border-bottom: none; }
.info-row i {
  width: 40px;
  height: 40px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-row .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  font-weight: 700;
  margin-bottom: 2px;
}
.info-row a, .info-row strong { color: var(--navy); font-weight: 700; font-size: 1.05rem; display: block; }
.info-row a:hover { color: var(--blue); }
.info-row p { margin: 0; color: var(--gray-700); font-size: 0.95rem; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
  border: none;
  width: 100%;
}

@media (min-width: 900px) {
  .location-block { grid-template-columns: 1fr 1fr; }
}

/* ======== CTA Banner ======== */
/* Guard: if a cta-banner sits beneath other content inside the same section,
   give it breathing room so it never collides with the block above. */
.feature-list + .cta-banner,
.features-grid + .cta-banner,
.pricing-grid + .cta-banner,
.unit-grid + .cta-banner,
.split-block + .cta-banner,
.area-grid + .cta-banner,
.gallery + .cta-banner {
  margin-top: 48px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
}
.cta-banner h2, .cta-banner h3 { color: var(--white); margin-bottom: 10px; position: relative; }
.cta-banner p { color: #d7e3f0; margin-bottom: 22px; max-width: 620px; margin-left: auto; margin-right: auto; position: relative; font-size: 1.08rem; }
.cta-banner .btn { position: relative; }
.cta-banner .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ======== Testimonials / trust row ======== */
.trust-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
}
.trust-row .trust-stat {
  background: var(--white);
  padding: 18px 16px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--gray-200);
}
.trust-row .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
  line-height: 1.1;
}
.trust-row .lbl { font-size: 0.82rem; color: var(--gray-500); }
@media (min-width: 768px) { .trust-row { grid-template-columns: repeat(4, 1fr); } }

/* ======== Footer ======== */
.footer {
  background: var(--navy-deep);
  color: #c8d4e0;
  padding: 56px 0 24px;
  font-size: 0.95rem;
}
.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-simple p { color: #c8d4e0; margin: 0; font-size: 0.95rem; line-height: 1.6; }
.footer-logo { height: 104px; width: auto; background: var(--white); padding: 10px 16px; border-radius: 12px; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem !important;
  font-weight: 800;
  color: var(--white) !important;
  padding: 0 !important;
  margin-top: 4px;
}
.footer-phone i { color: var(--cyan); }
.footer-bottom {
  padding-top: 22px;
  text-align: center;
  font-size: 0.82rem;
  color: #8699ae;
}

/* ======== Mobile Sticky Bottom CTA ======== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--white);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 3px solid var(--blue);
}
.mobile-cta-inner {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}
.mobile-cta .btn {
  flex: 1;
  padding: 13px 12px;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}
.btn-outline-dark {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
@media (max-width: 1139px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 78px; }
}
body.no-mobile-cta { padding-bottom: 0; }
body.no-mobile-cta .mobile-cta { display: none; }
@supports (padding: env(safe-area-inset-bottom)) {
  .mobile-cta { padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
}

/* ======== Utilities / Animations ======== */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 550ms ease, transform 550ms ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }

/* Unit Size Table */
.unit-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.unit-table th, .unit-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}
.unit-table th {
  background: var(--navy-deep);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.unit-table tr:last-child td { border-bottom: none; }
.unit-table td.price { font-weight: 800; color: var(--blue); font-size: 1.1rem; }
.unit-table tr:nth-child(even) td { background: var(--gray-50); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}
.faq-q i { color: var(--blue); transition: transform var(--transition); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
  padding: 0 22px;
  color: var(--gray-700);
}
.faq-item.open .faq-a { max-height: 360px; padding: 0 22px 18px; }

/* Contact form */
.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  max-width: 780px;
  margin: 0 auto;
}
.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.contact-form label .req { color: var(--accent-strong); margin-left: 2px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 0;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--gray-900);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(38,144,209,0.15);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form .form-group { display: flex; flex-direction: column; }
.contact-form button { width: 100%; margin-top: 8px; }
@media (min-width: 640px) {
  .contact-form .form-row { grid-template-columns: 1fr 1fr; }
}

.form-alert {
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-alert-error { background: #fdecec; color: #8a1c1c; border: 1px solid #f1bdbd; }
.form-alert-success { background: #e6f6ec; color: #0f5c2d; border: 1px solid #b8e0c2; }
.form-alert-success h3 { color: #0f5c2d; }

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
  margin-right: 8px;
  vertical-align: -3px;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-gallery a, .lightbox-gallery img { cursor: zoom-in; }
.lightbox-gallery a { position: relative; }
.lightbox-gallery a::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  background: rgba(11,31,61,0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  border-radius: inherit;
}
.lightbox-gallery a:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7,18,36,0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox-img-wrap {
  position: relative;
  max-width: min(1200px, 95vw);
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  object-fit: contain;
  display: block;
}
.lightbox-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  letter-spacing: 0.3px;
}
.lightbox-counter {
  position: absolute;
  top: 18px;
  left: 22px;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  background: rgba(0,0,0,0.35);
  padding: 6px 12px;
  border-radius: 999px;
}
.lightbox-btn {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.lightbox-btn:hover { background: var(--blue); color: #fff; transform: scale(1.08); }
.lightbox-close { top: 18px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 640px) {
  .lightbox { padding: 20px 10px; }
  .lightbox-btn { width: 42px; height: 42px; font-size: 1rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 14px; right: 14px; }
  .lightbox-caption { bottom: -30px; font-size: 0.78rem; padding: 0 14px; }
}

/* ============================================
   HERO — Split Image + Text (gradient blend)
   ============================================ */
.hero-v1 {
  padding: 40px 0 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.hero-v1::before, .hero-v1::after { display: none; }
.hero-v1 .hero-split {
  display: grid;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-v1 .hero-text h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem); }
.hero-v1 .hero-text .accent { color: var(--cyan); display: block; }
.hero-v1 .hero-text p { color: #d7e3f0; font-size: 1.1rem; max-width: 540px; }
.hero-v1 .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 14px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; color: #d9e6f4;
  margin-bottom: 16px;
}
/* Mobile: image below text, full bleed to viewport edges */
.hero-v1 .hero-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin: 28px -16px 0;
  position: relative;
}
.hero-v1 .hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-v1 .hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,61,0.55) 0%, rgba(11,31,61,0) 30%, rgba(11,31,61,0) 100%);
  pointer-events: none;
}
.hero-v1 .hero-actions { justify-content: flex-start; }

@media (min-width: 900px) {
  .hero-v1 { padding: 120px 0; min-height: 760px; }
  .hero-v1 .hero-split { grid-template-columns: 1fr; }
  .hero-v1 .hero-text { max-width: min(540px, 46%); position: relative; z-index: 3; }
  .hero-v1 .hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    margin: 0;
    aspect-ratio: auto;
    z-index: 1;
  }
  .hero-v1 .hero-image::before { display: none; }
}

/* ============================================
   Interior-page hero + breadcrumbs
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 48px 0 44px;
  position: relative;
}
.page-hero .crumb {
  font-size: 0.85rem;
  color: #a8c3e0;
  margin-bottom: 14px;
}
.page-hero .crumb a { color: #a8c3e0; }
.page-hero .crumb a:hover { color: var(--white); }
.page-hero .crumb .sep { margin: 0 6px; opacity: 0.45; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 12px;
  max-width: 860px;
}
.page-hero h1 .accent { color: var(--cyan); }
.page-hero .lede {
  color: #d7e3f0;
  font-size: 1.08rem;
  max-width: 700px;
  margin: 0;
}
@media (min-width: 900px) {
  .page-hero { padding: 76px 0 64px; }
}

/* High-demand / availability info banner */
.waitlist-banner {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--blue-pale);
  border: 1px solid #c7def0;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.waitlist-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--white);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(12,28,54,0.05);
}
.waitlist-text { flex: 1; min-width: 0; }
.waitlist-text strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.waitlist-text span {
  color: var(--gray-700);
  font-size: 0.94rem;
  line-height: 1.55;
}
.waitlist-banner .btn { flex-shrink: 0; }
@media (max-width: 720px) {
  .waitlist-banner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px; }
  .waitlist-banner .btn { width: 100%; }
}

/* Split block (text + image) for interior pages */
.split-block {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1fr;
}
.split-block .split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.split-block .split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-block .split-text h2 { margin-bottom: 14px; }
.split-block .split-text p { color: var(--gray-700); margin-bottom: 14px; }
@media (min-width: 900px) {
  .split-block { grid-template-columns: 1fr 1fr; gap: 56px; }
}

/* Storage-type cards (home page) */
.type-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.type-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--gray-700);
}
.type-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--blue-light);
  color: var(--gray-700);
}
.type-card > i {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 4px;
}
.type-card h3 { color: var(--navy); margin-bottom: 2px; }
.type-card p { color: var(--gray-700); margin: 0; }
.type-card .type-link {
  margin-top: 10px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) { .type-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
@media (min-width: 960px) { .type-grid.type-grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .type-grid.type-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

/* Size guide (pricing page) */
.size-guide {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}
.size-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.size-card h3 { color: var(--navy); margin-bottom: 4px; }
.size-card .hint {
  color: var(--gray-500);
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.size-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.size-card ul li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray-200);
  color: var(--gray-700);
}
.size-card ul li:last-child { border-bottom: none; }
.fine-print {
  color: var(--gray-500);
  font-size: 0.88rem;
  text-align: center;
  margin-top: 8px;
}
@media (min-width: 768px) { .size-guide { grid-template-columns: 1fr 1fr; } }

/* Feature list (vertical rows, used on interior pages) */
.feature-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.feature-list .feature {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .feature-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .feature-list { grid-template-columns: 1fr 1fr 1fr; } }

/* Service-area grid (about page) */
.area-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.area {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.area i { color: var(--blue); font-size: 1.3rem; display: block; margin-bottom: 6px; }
.area strong { display: block; color: var(--navy); font-size: 1rem; margin-bottom: 2px; }
.area span { color: var(--gray-500); font-size: 0.82rem; }
@media (min-width: 768px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .area-grid { grid-template-columns: repeat(6, 1fr); } }

/* Contact action row (directions + call buttons) */
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .contact-actions .btn { flex: 1 1 auto; min-width: 0; }
}

/* Contact cards */
.contact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--gray-700);
  transition: transform var(--transition), box-shadow var(--transition);
}
a.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--gray-700); }
.contact-card > i { font-size: 2rem; color: var(--blue); margin-bottom: 6px; }
.contact-card h3 { color: var(--navy); margin-bottom: 0; }
.contact-card p { color: var(--gray-700); margin: 0; font-size: 1.05rem; }
.contact-card .contact-link {
  margin-top: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

/* Multi-column footer (replaces footer-simple on interior/SEO build) */
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: 4px 0; }
.footer-col ul li a { color: #c8d4e0; font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { color: #c8d4e0; margin: 0; line-height: 1.6; }
.footer-col .footer-logo { margin-bottom: 14px; }
.footer-col .footer-phone { margin-top: 10px; }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; }
}

/* FAQ styles */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: inherit;
}
.faq-q i { color: var(--blue); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p {
  padding: 0 22px 20px;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.65;
}
