/* STORAGE PAGE STYLES */

/* Hero Section */
.storage-hero {
  height: 50vh;
  background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.6)), url('../gallery/storage-hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  margin-top: 80px;
}

.storage-hero .hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.storage-hero .hero-content p {
  font-size: 1.3rem;
  font-weight: 400;
  color: #ffe600;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Features Section */
.storage-features {
  background: #fff;
  padding: 5rem 0 2rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #f8f9fa;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Multi-Vehicle Storage Section */
.multi-vehicle-storage {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffe600 0%, #ffd700 100%);
  color: #000;
}

.multi-vehicle-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.multi-vehicle-text h2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000;
}

.multi-vehicle-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #333;
}

.collection-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(0,0,0,0.05);
  border-radius: 12px;
  border-left: 4px solid #000;
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000;
}

.benefit-text p {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
}

.multi-vehicle-visual {
  text-align: center;
}

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

.stat-card {
  background: rgba(0,0,0,0.1);
  padding: 2rem 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.collection-note {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  background: rgba(0,0,0,0.05);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 0;
}

/* Visual Callout Section - FIXED FOR MOBILE */
.storage-visual {
  background: url('../gallery/storage-visual.jpg') center/cover no-repeat;
  position: relative;
  min-height: 350px;
  max-height: 500px;
  margin: 0;
  overflow: hidden;
}

.visual-overlay {
  background: linear-gradient(120deg, rgba(0,0,0,0.7) 60%, rgba(255,230,0,0.1));
  width: 100%;
  height: 100%;
  padding: 0;
  min-height: 350px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.visual-content {
  color: #fff;
  text-align: left;
  max-width: 600px;
  margin: 3rem 2rem;
  z-index: 2;
  position: relative;
}

.visual-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #ffe600;
}

.visual-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  color: #fff;
}

.visual-content li {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.visual-content .cta-btn {
  background: #ffe600;
  color: #000;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.visual-content .cta-btn:hover {
  background: #fff;
  color: #000;
}

/* FAQ Section */
.storage-faq {
  background: #fff;
  padding: 4rem 0;
}

.storage-faq h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  background: #f8f9fa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  text-align: left;
  outline: none;
  transition: background 0.2s;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 2rem;
  font-size: 1.5rem;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  content: '–';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #444;
  padding: 0 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}

/* CTA Section */
.storage-cta {
  background: linear-gradient(120deg, #ffe600 0%, #fffbe6 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #000;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #444;
}

.cta-content .cta-btn {
  background: #000;
  color: #ffe600;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}

.cta-content .cta-btn:hover {
  background: #ffe600;
  color: #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
  }
  .visual-content {
    margin: 2rem 1rem;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .storage-hero {
    height: 35vh;
    margin-top: 70px;
  }
  
  .multi-vehicle-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .multi-vehicle-text h2 {
    font-size: 2rem;
  }
  
  .collection-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .benefit-item {
    padding: 1rem;
  }
  
  /* MOBILE FIX FOR VISUAL SECTION */
  .storage-visual {
    min-height: 280px;
    max-height: 350px;
    background-attachment: scroll;
  }
  
  .visual-overlay {
    min-height: 280px;
    max-height: 350px;
    padding: 2rem 0;
  }
  
  .visual-content {
    margin: 1rem 1rem;
    max-width: calc(100% - 2rem);
  }
  
  .visual-content h2 {
    font-size: 1.5rem;
  }
  
  .visual-content ul {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .visual-content li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .storage-faq h2,
  .cta-content h2 {
    font-size: 1.5rem;
  }
  .faq-list {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .storage-hero .hero-content h1 {
    font-size: 1.5rem;
  }
  .storage-hero .hero-content p {
    font-size: 1rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .feature-card {
    padding: 1.2rem 0.8rem;
    min-height: 200px;
  }
  
  /* ADDITIONAL MOBILE FIXES */
  .storage-visual {
    min-height: 250px;
    max-height: 300px;
  }
  
  .visual-overlay {
    min-height: 250px;
    max-height: 300px;
    padding: 1.5rem 0;
  }
  
  .visual-content {
    margin: 0.5rem 1rem;
    text-align: center;
  }
  
  .visual-content h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .visual-content ul {
    font-size: 0.95rem;
    text-align: left;
    margin-bottom: 1.5rem;
  }
  
  .visual-content li {
    font-size: 0.95rem;
  }
  
  .visual-content .cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 1rem 1rem;
  }
  .faq-answer {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
  .cta-content .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}