/* ── Home Page Styles ── */

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../images/facility5.jpg');
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,33,39,0.92) 55%, rgba(28,33,39,0.4) 100%);
}
.hero-stripe {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--orange);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin: 1rem 0 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

/* Stats Bar */
.stats-bar {
  background: var(--charcoal);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stat-item { text-align: center; padding: 0 1.5rem; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.35rem;
}

/* Storage Types */
.storage-types { padding: 5rem 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0.5rem 0 1rem;
}
.section-header p { color: var(--gray-text); max-width: 560px; margin: 0 auto; }

.storage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.storage-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.storage-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.storage-card:hover img { transform: scale(1.05); }
.storage-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,33,39,0.92) 40%, rgba(28,33,39,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.storage-card-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.storage-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.storage-card p { font-size: 0.875rem; color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.storage-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}

/* Why BCC */
.why-bcc { padding: 5rem 0; background: var(--gray-bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-image img { width: 100%; height: 420px; object-fit: cover; }
.why-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0.5rem 0 1.5rem;
}
.why-intro { color: var(--gray-text); margin-bottom: 2rem; line-height: 1.7; }
.why-list { list-style: none; }
.why-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.why-list li svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.why-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.why-list span { font-size: 0.875rem; color: var(--gray-text); }

/* How It Works */
.how-it-works { padding: 5rem 0; background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step {
  padding-left: 1.5rem;
  border-left: 3px solid var(--orange);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  color: rgba(232,97,10,0.15);
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.step p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.7; }
.steps-cta { text-align: center; margin-top: 3rem; }

/* Gallery */
.gallery-section { padding: 5rem 0; background: var(--gray-bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.gallery-item { overflow: hidden; }
.gallery-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  background: var(--charcoal);
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, var(--orange) 0, var(--orange) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
  opacity: 0.06;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  margin: 0.5rem 0 1rem;
}
.cta-content p { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Map */
.map-section { padding: 5rem 0; background: var(--white); }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.map-info h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0.5rem 0 1rem;
}
.map-info > p { color: var(--gray-text); line-height: 1.7; margin-bottom: 2rem; }
.map-details { display: flex; flex-direction: column; gap: 1rem; }
.map-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.map-detail-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.map-detail-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.map-detail-item span { font-size: 0.875rem; color: var(--gray-text); }
.map-embed {
  height: 420px;
  border: 3px solid var(--charcoal);
  overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; }

/* Responsive */
@media (max-width: 900px) {
  .storage-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: 1fr; }
  .map-embed { height: 300px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: span 1; }
}
