/* ===== STORAGE FACILITIES PAGE ===== */

/* Remove default padding */
body.page-template-storage-facilities .site-main {
  padding: 0 !important;
  max-width: none !important;
}

/* ===== HERO SECTION ===== */
.storage-hero {
  background: var(--gb-navy);
  color: var(--gb-white);
  padding: 4rem 2rem;
  text-align: center;
}

.storage-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: var(--gb-white);
}

.storage-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== PRICING SECTION ===== */
.storage-pricing {
  background: var(--gb-gray);
  padding: 4rem 2rem;
}

.storage-pricing h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gb-navy);
  text-align: center;
  margin: 0 0 3rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: var(--gb-white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card-highlight {
  border-color: var(--gb-gold);
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), var(--gb-white));
  position: relative;
}

.pricing-card-highlight::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gb-gold);
  color: var(--gb-navy);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 20px;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin: 0 0 1rem;
}

.pricing-rate {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gb-gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gb-border);
}

.pricing-details {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gb-text);
  text-align: left;
}

.pricing-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-details li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-details li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gb-gold);
  font-weight: 700;
}

.pricing-footnote {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gb-text-light);
  margin: 2rem 0 0;
}

/* ===== HOW TO BUY STEPS SECTION (reversed colours) ===== */
.storage-steps {
  background: var(--gb-navy);
  padding: 4rem 2rem;
}

.storage-steps h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gb-white);
  text-align: center;
  margin: 0 0 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-item {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gb-gold);
  color: var(--gb-navy);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}

.step-item:not(:last-child) .step-number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc(100% + 2rem);
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

.step-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gb-white);
  margin: 0 0 0.75rem;
}

.step-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ===== WHY STORAGE SECTION (option 3: 2+2 grid with centred image) ===== */
.storage-why {
  background: var(--gb-white);
  padding: 4rem 2rem;
}

.storage-why h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gb-navy);
  text-align: center;
  margin: 0 0 3rem;
}

.storage-why-top-row,
.storage-why-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}

.storage-why-image-row {
  text-align: center;
  padding: 2.5rem 0;
}

.storage-why-image-row .vault-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.storage-why-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gb-navy);
  margin: 0 0 0.5rem;
}

.storage-why-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gb-text);
  margin: 0;
}

/* ===== REMOVAL OPTIONS SECTION ===== */
.storage-removal {
  background: var(--gb-gray);
  padding: 4rem 2rem;
}

.storage-removal h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gb-navy);
  text-align: center;
  margin: 0 0 3rem;
}

.removal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.removal-option {
  background: var(--gb-white);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.removal-option .removal-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.removal-option h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin: 1.5rem 1.5rem 1rem;
}

.removal-content {
  padding: 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gb-text);
  flex: 1;
}

.removal-content p {
  margin: 0 0 1rem;
}

.removal-cta {
  display: inline-block;
  background: var(--gb-navy);
  color: var(--gb-white);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  margin: 1rem 1.5rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  transition: background 0.2s;
}

.removal-cta:hover {
  background: var(--gb-gold);
  color: var(--gb-navy);
}

/* ===== VAT FREE SILVER STORAGE BANNER ===== */
.storage-vat-free-banner {
  background: linear-gradient(135deg, var(--gb-gold) 0%, #b8953e 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.storage-vat-free-banner h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gb-navy);
  margin: 0 0 1rem;
}

.storage-vat-free-banner p {
  font-size: 1.1rem;
  color: var(--gb-navy);
  margin: 0 0 2rem;
}

.vat-free-cta {
  display: inline-block;
  background: var(--gb-navy);
  color: var(--gb-white);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}

.vat-free-cta:hover {
  background: #1a2744;
  transform: translateY(-2px);
  color: var(--gb-white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .storage-why-top-row,
  .storage-why-bottom-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-cards,
  .removal-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-highlight {
    order: -1;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-item:not(:last-child) .step-number::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .storage-hero h1 {
    font-size: 1.75rem;
  }

  .storage-hero,
  .storage-why,
  .storage-pricing,
  .storage-steps,
  .storage-removal,
  .storage-vat-free-banner {
    padding: 3rem 1.5rem;
  }

  .storage-why h2,
  .storage-pricing h2,
  .storage-steps h2,
  .storage-removal h2,
  .storage-vat-free-banner h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .storage-vat-free-banner h2 {
    font-size: 1.5rem;
  }

  .vat-free-cta {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}
