/* Base styles inherited from previous page */
.service-page,
.service-layout,
.service-sidebar,
.service-menu,
.menu-item,
.content-section,
.section-header,
.section-indicator {
  /* Same as storage-maintenance.css */
}

/* Unique Storage Management Design Elements */

/* Wave Background for Hero */
.wave-bg {
  position: relative;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 50%, #ffffff 100%);
  border-radius: 20px;
  overflow: hidden;
}

.wave-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%23fcb614' opacity='0.1'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
}

/* Hexagon Grid for Advantages */
.hexagon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.hexagon-item {
  text-align: center;
  position: relative;
}

.hexagon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #fcb614, #f0a700);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(252, 182, 20, 0.3);
}

.hexagon-item:hover .hexagon {
  transform: rotate(10deg) scale(1.05);
}

.hexagon i {
  color: white;
  font-size: 1.5rem;
}

.hexagon-item h4 {
  color: #012970;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Floating Cards for Features */
.floating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.floating-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 24px;
  border: 1px solid rgba(252, 182, 20, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.floating-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fcb614, transparent);
}

.floating-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #fcb614;
}

.floating-icon {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.blue-glow {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}
.green-glow {
  background: linear-gradient(135deg, #10b981, #059669);
}
.orange-glow {
  background: linear-gradient(135deg, #f59e0b, #fcb614);
}
.purple-glow {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}
.yellow-glow {
  background: linear-gradient(135deg, #f0a700, #fcb614);
}

.floating-card h4 {
  color: #012970;
  font-size: 1.15rem;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 600;
}

/* Split Advice with Metric Card */
.split-advice {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.metric-card {
  background: linear-gradient(135deg, #012970 0%, #0148a3 100%);
  width: 120px;
  height: 120px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 15px 35px rgba(1, 41, 112, 0.3);
}

.metric-number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.85rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-layout {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .split-advice {
    grid-template-columns: 1fr;
  }
  .metric-card {
    width: 100px;
    height: 100px;
    grid-column: 1 / -1;
    justify-self: center;
  }
  .metric-number {
    font-size: 1.8rem;
  }

  .hexagon-grid,
  .floating-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-main {
    flex-direction: column;
  }
  .section-image {
    order: -1;
    width: 100%;
    height: 280px;
  }
}

.gradient-fill {
  background: linear-gradient(135deg, #fcb614, #f0a700) !important;
}
/* Fixed Hero Image - Proper Size */
.compact-image {
  flex-shrink: 0;
  width: 320px; /* Reduced from 400px */
  height: 280px; /* Reduced from 350px */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  margin-left: 30px; /* Proper spacing from text */
}

.compact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fixed Advice Section */
.advice-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}

.advice-image {
  background: linear-gradient(135deg, #012970 0%, #0148a3 100%);
  height: 200px; /* Fixed height */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(1, 41, 112, 0.2);
}

.advice-image i {
  font-size: 3.5rem;
  color: #fcb614;
}

/* Reused FAQ Styles from Original */
.faq-container {
  margin: 35px 0px 35px 15px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #f1f3f5;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: #fcb614;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-header {
  padding: 22px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-header h4 {
  color: #012970;
  font-size: 1.05rem;
  margin: 0;
  font-weight: 600;
  flex: 1;
}

.faq-header i {
  font-size: 1.1rem;
  color: #999;
  transition: all 0.3s ease;
}

.faq-item.active .faq-header i {
  color: #fcb614;
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fafbfc;
}

.faq-item.active .faq-content {
  max-height: 150px;
}

.faq-content p {
  padding: 0 25px 22px 25px;
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Reused Contact Styles from Original */
.quick-contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: white;
  padding: 25px 28px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin: 35px 0 35px 15px;
  gap: 20px;
  border-top: 4px solid #fcb614;
}

.quick-item {
  flex: 1;
  text-align: center;
}

.quick-item h4 {
  color: #012970;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 2px solid #fcb614;
  display: inline-block;
}

.quick-item p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

.section-main {
  display: flex;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 992px) {
  .service-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .storage-main {
    margin-top: 40px;
  }
  .section-main {
    gap: 30px;
    padding: 0 15px;
  }

  .compact-image {
    width: 100%;
    height: 260px;
    margin-left: 0;
    order: -1; /* Image first on mobile */
  }

  .advice-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .advice-image {
    height: 180px;
    width: 100%;
  }

  .advice-image i {
    font-size: 3rem;
  }

  .quick-contact {
    flex-direction: column;
    gap: 18px;
    padding: 22px 20px;
    margin: 0px 10px 10px 10px;
    align-items: center;
  }

  .faq-container {
    margin: 35px 5px 35px 0px;
  }

  .hexagon-grid,
  .floating-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .compact-image {
    height: 220px;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }
}

/* Remove problematic wave-bg styles */
.wave-bg {
  display: none;
} /* Disabled */
