@import url(/assets/theme/theme.css);

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

/* Blob Background Elements */
.blob {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.05);
  filter: blur(120px);
  z-index: 1;
}

.blob-1 {
  top: -300px;
  right: -300px;
}

.blob-2 {
  bottom: -400px;
  left: -200px;
}

.blob-3 {
  top: 20%;
  right: -300px;
}

.blob-4 {
  bottom: 10%;
  left: -300px;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(59, 130, 246, 0.1);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.dot-blue {
  background-color: var(--primary-blue);
}

.dot-orange {
  background-color: var(--orange);
}

/* Section Titles and Text */
.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-description {
  font-size: 1.125rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--gray-700);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Buttons and CTAs */

.buy-now-btn {
  background-color: var(--primary-blue);
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  z-index: 10;
  position: relative;
}

.buy-now-btn:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
  z-index: 10;
  position: relative;
}

/* storage Colocation Hero Section */
.colocation-hero-section {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.colocation-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.colocation-hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
}

.colocation-hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgb(193,193,193);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* storage colocation Overview Section */
.colocation-overview-section {
  padding: 40px 0;
  position: relative;
}

.overview-content {
  display: flex;
  justify-content: center;
}

.overview-text {
  max-width: 1000px;
}

.overview-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-align: center;
}

.overview-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgb(193,193,193);
}

/* Technical Specifications Section */
.specifications-section {
  padding: 40px 0;
  position: relative;
  background-color: rgba(25, 39, 80, 0.1);
}

.specifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.specification-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.specification-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: rgb(193,193,193);
  line-height: 1.5;
}

.spec-icon {
  color: var(--primary-blue);
  margin-right: 0.75rem;
  font-weight: bold;
}
/* Add-ons Section */
.addons-section {
  padding: 40px 0;
  position: relative;
  background-color: rgba(25, 39, 80, 0.1);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.addon-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-5px);
}

.addon-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.addon-card p {
  color: rgb(193,193,193);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.addon-price {
  font-weight: 700;
  color: var(--primary-blue) !important;
  font-size: 1.125rem;
  margin-top: auto;
}
/* Why Choose Section */
.why-choose-section {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  max-width: 100%;
  height: auto;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.feature-card p {
  color: rgb(193,193,193);
  line-height: 1.6;
}
/* FAQ Section */
.faq-section {
  padding: 80px 0;
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  padding: 1.5rem 0;
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gray-400);
}

/* Icon styles and animation */
.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s;
}

.faq-icon:before,
.faq-icon:after {
  content: '';
  position: absolute;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.faq-icon:before {
  width: 2px;
  height: 16px;
  top: 4px;
  left: 11px;
}

.faq-icon:after {
  width: 16px;
  height: 2px;
  top: 11px;
  left: 4px;
}

/* When question is active */
.faq-question.active {
  color: var(--white);
}

.faq-question.active .faq-icon:before {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-question.active .faq-icon:after {
  background-color: var(--gray-400);
}

.faq-answer {
  padding: 0 0 1.5rem;
  color: rgb(193,193,193);
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* CTA Section */
.colocation-cta-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.colocation-cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.colocation-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.colocation-cta-description {
  font-size: 1.125rem;
  color: rgb(193,193,193);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.colocation-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Pre-footer CTA */
.pre-footer-cta {
  background-color: rgba(59, 130, 246, 0.05);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.pre-footer-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pre-footer-cta__content {
  text-align: center;
  max-width: 800px;
  margin-bottom: 2rem;
}

.pre-footer-cta__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.pre-footer-cta__description {
  font-size: 1.125rem;
  color: rgb(193,193,193);
  margin-bottom: 2rem;
}

.pre-footer-cta__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 10;
  position: relative;
}

.pre-footer-cta__shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background-color: rgba(59, 130, 246, 0.2);
  opacity: 0.1;
  border-radius: 50%;
}

.shape-2 {
  bottom: -30px;
  left: -30px;
  width: 250px;
  height: 250px;
  background-color: var(--primary-blue);
  opacity: 0.1;
  border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .colocation-cta-buttons,
  .pre-footer-cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .colocation-cta-buttons .btn,
  .pre-footer-cta__buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .colocation-hero-title {
    font-size: 2.5rem;
  }
  
  .colocation-cta-title, 
  .section-title,
  .pre-footer-cta__title,
  .overview-text h2 {
    font-size: 2rem;
  }
  
  .specifications-grid,
  .features-grid,
  .addons-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .plans-table th,
  .plans-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .colocation-hero-title {
    font-size: 2rem;
  }
  
  .colocation-hero-description {
    font-size: 1rem;
  }
  
  .section-title,
  .colocation-cta-title,
  .pre-footer-cta__title,
  .overview-text h2 {
    font-size: 1.75rem;
  }
  
  .plans-table-wrapper {
    font-size: 0.75rem;
  }
  
  .buy-now-btn {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .plans-table th,
  .plans-table td {
    padding: 0.5rem 0.3rem;
  }
}-blue, .dot-orange {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}