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

/* Single Unit Colocation Page Specific Styles */
.colocation-hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.colocation-hero-title span {
  color: var(--primary-blue);
}

.colocation-hero-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Specifications Section */
.specifications-section {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

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

.specification-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.specification-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.spec-list {
  list-style: none;
}

.spec-list li {
  display: flex;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.spec-icon {
  color: var(--primary-blue);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* 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;
}
/* 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;
}

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

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

.certification-item {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.certification-item:hover {
  transform: translateY(-5px);
}

.certification-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certification-logo img {
  max-width: 100%;
  height: auto;
}

.certification-item p {
  color: rgb(193,193,193);
  font-size: 0.95rem;
  line-height: 1.4;
}
/* Differentiators Section */
.differentiators-section {
  padding: 80px 0;
  position: relative;
}

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

.differentiator-item {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.differentiator-item:hover {
  transform: translateY(-5px);
}

.differentiator-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.differentiator-item p {
  color: rgb(193,193,193);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* CTA Section */
.colocation-cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: rgba(25, 39, 80, 0.05);
}

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

.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: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.colocation-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  z-index: 10;
  position: relative;
}

/* FAQ Section - Updated to match website style */
 
 .faq-section {
  padding: 80px 0;
  position: relative;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    overflow: hidden;

}
.faq-question {
  padding: 1.25rem;
    font-size: 1.125rem;
    font-weight: 500;
  color: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.faq-question:hover {
  color: rgba(255, 255, 255, 0.7);
}
/* 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: #fff;
  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: #fff;
}
.faq-question.active .faq-icon:before {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-question.active .faq-icon:after {
  background-color: rgba(255, 255, 255, 0.7);
}
.faq-answer {
   padding: 0 1.25rem 1.25rem;
 
opacity: 0.8;
  color: rgb(193,193,193);
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
  display: none;
}
.faq-answer.active {
  display: block;
}

@media (max-width: 480px) {
  .faq-question {
    font-size: 1rem;
    padding: 1rem 0;
  }
  
  .faq-answer {
    font-size: 0.9rem;
    padding: 0 0 1rem;
  }
}
 
/* Overview Section */
.colocation-overview-section {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

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

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

.overview-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

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

.overview-text p:last-child {
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .specification-card, 
  .feature-card,
  .certification-card {
    padding: 1.5rem;
  }
  
  .colocation-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .colocation-hero-title {
    font-size: 2rem;
  }
  
  .colocation-hero-description {
    font-size: 1rem;
  }
  
  .specification-card h3,
  .feature-card h3 {
    font-size: 1.125rem;
  }
  
  .specifications-grid,
  .features-grid,
  .certifications-grid {
    grid-template-columns: 1fr;
  }
  
  .colocation-cta-title {
    font-size: 2rem;
  }
  
  .colocation-cta-description {
    font-size: 1rem;
  }
  
  .colocation-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .colocation-cta-buttons .btn {
    width: 100%;
  }
  
  .overview-text h2 {
    font-size: 1.75rem;
  }
  
  .overview-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .colocation-hero-title {
    font-size: 1.75rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon img {
    width: 24px;
    height: 24px;
  }
  
  .certification-icon {
    width: 60px;
    height: 60px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-description {
    font-size: 0.9rem;
  }
}

/* Blob styling (consistent with your theme) */
.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;
}

/* Container and section styling */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.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;
  color: rgba(255, 255, 255, 0.8);
}

/* Button styling */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  z-index: 10;
  position: relative;
}

.cta-primary {
  background-color: #3b82f6;
  color: #f5f5f5;
  padding: 0.9rem 1.8rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
  z-index: 10;
  position: relative;
}

.cta-primary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  z-index: 10;
  position: relative;
}

.cta-secondary {
  background-color: rgba(59, 130, 246, 0.1);
  color: #f5f5f5;
  padding: 0.9rem 1.8rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  z-index: 10;
  position: relative;
}

.cta-secondary:hover {
  background-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
  z-index: 10;
  position: relative;
}