/* Complete Standalone CSS for Full Rack Colocation Page */

/* Base Styles */
:root {
  --white: #f5f5f5;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --bg-dark: #121212;
  --bg-dark-secondary: #1a1a1a;
  --border-light: rgba(255, 255, 255, 0.05);
  --primary-blue: #3b82f6;
  --primary-blue-light: #60a5fa;
  --primary-blue-dark: #2563eb;fa
  --orange: #f59e0b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #121212;
  color: #f5f5f5;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Utility Classes */
.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;
}

.blob-5 {
  top: 30%;
  right: -300px;
}

/* Hero Section */
.hero {
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  margin: 30px auto 30px;
  text-align: center;
}

.hero-badge {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.colocation-hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.colocation-hero-title span {
  color: #3b82f6;
  position: relative;
}

.colocation-hero-description {
  font-size: 1.25rem;
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  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;
  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;
  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;
}

/* Section Common Styles */
.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;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 1.125rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
  background-color: rgba(59, 130, 246, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon img {
  width: 35px;
  height: 35px;
  color: #3b82f6;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Technical Specifications Section */
.specifications-section {
  padding: 40px 0;
  position: relative;
}

.specifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.specification-card {
  background-color: var(--bg-dark);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.specification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.specification-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f5f5f5;
}

.spec-list {
  list-style: none;
  padding: 0;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.8);
}

.spec-icon {
  color: #3b82f6;
  margin-right: 0.5rem;
  font-weight: bold;
}

/* Why Choose Section */
.why-choose-section {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

/* Differentiators Section */
.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.differentiator-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.differentiator-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
}

.differentiator-icon {
  background-color: rgba(59, 130, 246, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.differentiator-icon img {
  width: 25px;
  height: 25px;
  color: #3b82f6;
}

.differentiator-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.differentiator-content p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
}

/* Certifications Section */
.certifications-section {
  padding: 40px 0;
  position: relative;
  background-color: rgba(25, 39, 80, 0.1);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.certification-item {
  background-color: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.certification-item:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
}

.certification-icon {
  background-color: rgba(59, 130, 246, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.certification-icon img {
  width: 30px;
  height: 30px;
  color: #3b82f6;
}

.certification-name {
  font-size: 1rem;
  font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.contact-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-content {
  max-width: 500px;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: #f5f5f5;
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.form-control::placeholder {
  color: rgba(245, 245, 245, 0.4);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  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;
  cursor: pointer;
  width: 100%;
}

.form-submit:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

/* Updated FAQ Section to match website theme */

.faq-section {
    padding: 60px 0;
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.faq-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.faq-section .hero-badge {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f5f5f5;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #f5f5f5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: #3b82f6;
}

/* Icon styles for + and - */
.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s;
}

.faq-icon:before,
.faq-icon:after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    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 (transforms + into -) */
.faq-item.active .faq-icon:before {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(245, 245, 245, 0.7);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active {
    background-color: rgba(255, 255, 255, 0.03);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
        padding: 0 1.25rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq-section .section-title {
        font-size: 1.75rem;
    }
    
    .faq-question {
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    .faq-answer {
        font-size: 0.85rem;
        padding: 0 1rem 1rem;
    }
}

/* CTA Section */
.colocation-cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: rgba(59, 130, 246, 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;
  margin-bottom: 1rem;
}

.colocation-cta-description {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.colocation-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  z-index: 10;
  position: relative;
}

.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;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .colocation-hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .colocation-cta-title {
    font-size: 2rem;
  }
  
  .colocation-cta-description {
    font-size: 1.125rem;
  }
}

@media (max-width: 992px) {
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .colocation-hero-title {
    font-size: 2.5rem;
  }
  
  .colocation-hero-description {
    font-size: 1.125rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-primary, 
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
  
  .features-grid,
  .specifications-grid,
  .differentiators-grid,
  .certifications-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card, 
  .specification-card, 
  .differentiator-card,
  .certification-item {
    padding: 1.5rem;
  }
  
  .feature-icon,
  .certification-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon img,
  .certification-icon img {
    width: 30px;
    height: 30px;
  }
  
  .differentiator-icon {
    width: 40px;
    height: 40px;
  }
  
  .differentiator-icon img {
    width: 20px;
    height: 20px;
  }
  
  .colocation-cta-buttons {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .colocation-cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .colocation-hero-title {
    font-size: 2rem;
  }
  
  .colocation-hero-description {
    font-size: 1rem;
  }
  
  .hero-badge,
  .section-badge {
    font-size: 0.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .feature-card h3,
  .specification-card h3,
  .differentiator-content h3 {
    font-size: 1.125rem;
  }
  
  .feature-card p,
  .differentiator-content p {
    font-size: 0.9375rem;
  }
  
  .colocation-cta-title {
    font-size: 1.75rem;
  }
  
  .colocation-cta-description {
    font-size: 1rem;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 1rem 0;
  }
  
  .faq-answer {
    font-size: 0.9rem;
    padding: 0 0 1rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated {
  animation: fadeIn 0.6s ease forwards;
}

/* Form validation styles */
.invalid {
  border-color: #ff4d4d !important;
}

.validation-message {
  color: #ff4d4d;
  margin-top: 10px;
  font-size: 0.9rem;
}
