/* ═══════════════════════════════════════════════════════
   GDATA GROUP — colocation.css
   Scope: Colocation page (hero, datacenter tabs, comparison
   pricing tables, special-support list). Same palette as the
   rest of the site: --accent #0D59F2 / #3D7FFF, cyan #48D6FF
   / #00C8D4, on the --bg-main #00193C background.
   ═══════════════════════════════════════════════════════ */

:root {
  --colo-text: #FFFFFF;
  --colo-muted: #94A3B8;
  --colo-line: rgba(255, 255, 255, 0.08);
  --colo-card: rgba(255, 255, 255, 0.03);
}

/* ─────────────────────────────────────────────────────
   0. SHARED LAYOUT
   ───────────────────────────────────────────────────── */
.colo-container {
  margin: 0 auto;
  padding: 0 102px;
}

@media (max-width: 991px) {
  .colo-container { padding: 0 24px; }
}

/* ─────────────────────────────────────────────────────
   1. HERO
   ───────────────────────────────────────────────────── */
.colo-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    radial-gradient(ellipse 70% 80% at 85% 40%, rgba(13, 89, 242, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 0% 90%, rgba(0, 200, 212, 0.10) 0%, transparent 60%);
}

.colo-hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 560px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 214, 255, 0.16) 0%, transparent 65%);
  filter: blur(12px);
  pointer-events: none;
}

.colo-hero .colo-container { position: relative; z-index: 1; }

.colo-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.colo-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(13, 89, 242, 0.16);
  border: 1px solid rgba(72, 214, 255, 0.35);
  color: #48D6FF;
  font-family: "Space Grotesk", "Exo 2", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.colo-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #48D6FF;
  box-shadow: 0 0 10px rgba(72, 214, 255, 0.7);
  animation: colo-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes colo-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.25); opacity: 0.7; }
}

.colo-hero-title {
  font-family: "Space Grotesk", "Exo 2", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--colo-text);
  margin: 0 0 18px;
}

.colo-hero-desc {
  max-width: 520px;
  color: var(--colo-muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
}

.colo-hero-right {
  display: flex;
  justify-content: center;
}

.colo-hero-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

/* ─────────────────────────────────────────────────────
   2. PLANS — TABS
   ───────────────────────────────────────────────────── */
.colo-plans { padding: 56px 0 96px; }

.colo-tabs {
  position: relative;
  display: flex;
  gap: 0;
  max-width: 760px;
  margin: 0 auto 48px;
}

.colo-tab {
  flex: 1;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0 12px 22px;
  font-family: "Space Grotesk", "Exo 2", sans-serif;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  color: var(--colo-muted);
  white-space: nowrap;
  transition: color var(--dur, .3s) var(--ease, ease);
}

.colo-tab:hover { color: #CBD5E1; }
.colo-tab.is-active { color: var(--colo-text); }

/* progress track + moving thumb under the tabs */
.colo-tabs-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.colo-tabs-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 33.333%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent, #0D59F2), #48D6FF);
  transition: transform var(--dur, .3s) var(--ease, ease),
              width var(--dur, .3s) var(--ease, ease);
}

/* ─────────────────────────────────────────────────────
   2b. PLANS — COMPARISON TABLE
   ───────────────────────────────────────────────────── */
.colo-panel[hidden] { display: none; }

.colo-table-wrap {
  border: 1px solid var(--colo-line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--colo-card);
}

.colo-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.colo-table thead th {
  padding: 22px 20px;
  font-family: "Space Grotesk", "Exo 2", sans-serif;
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(13, 89, 242, 0.16);
}

.colo-th-desc { text-align: left; width: 30%; color: #fff; }
.colo-th-plan { text-align: center; color: #fff; }

.colo-table tbody td {
  padding: 16px 20px;
  border-top: 1px solid var(--colo-line);
  font-size: 14.5px;
  color: var(--colo-text);
  vertical-align: middle;
}

.colo-td-desc { text-align: left; font-weight: 600; color: var(--colo-text); }
.colo-td-val  { text-align: center; color: #CBD5E1; }

.colo-table tbody tr:nth-child(odd) td { background: rgba(255, 255, 255, 0.02); }
.colo-table tbody tr:hover td { background: rgba(72, 214, 255, 0.06); }

/* highlighted base-price row */
.colo-table tbody tr.is-highlight td { background: rgba(72, 214, 255, 0.08); }
.colo-table tbody tr.is-highlight .colo-td-val {
  color: #48D6FF;
  font-size: 16px;
  font-weight: 700;
}
.colo-table tbody tr.is-highlight .colo-td-desc { color: #fff; }

/* CTA row */
.colo-row-cta td { border-top: 1px solid var(--colo-line); }
.colo-row-cta:hover td { background: transparent !important; }

.colo-btn {
  display: inline-block;
  padding: 11px 30px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(90deg, var(--accent, #0D59F2), #3D7FFF);
  box-shadow: 0 6px 18px rgba(13, 89, 242, 0.4);
  transition: transform var(--dur, .3s) var(--ease, ease),
              box-shadow var(--dur, .3s) var(--ease, ease);
}

.colo-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(13, 89, 242, 0.6);
}

/* ─────────────────────────────────────────────────────
   2c. SUPPORT LIST
   ───────────────────────────────────────────────────── */
.colo-support { margin-top: 40px; }

.colo-support-title {
  font-family: "Space Grotesk", "Exo 2", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #48D6FF;
  margin: 0 0 14px;
}

.colo-support-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.colo-support-list li {
  position: relative;
  padding-left: 26px;
  color: var(--colo-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.colo-support-list li::before {
  content: "\F26A";              /* bi-check-circle-fill */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--cyan, #00C8D4);
  font-size: 15px;
}

/* ─────────────────────────────────────────────────────
   2d. ADD-ON SERVICES & EQUIPMENT
   ───────────────────────────────────────────────────── */
.colo-addons { padding: 80px 0 0; }

.colo-addons-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: -16px 0 36px;
}

.colo-addons-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid rgba(72, 214, 255, 0.3);
  background: rgba(13, 89, 242, 0.16);
  color: #fff;
  font-family: "Space Grotesk", "Exo 2", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--dur, .3s) var(--ease, ease),
              border-color var(--dur, .3s) var(--ease, ease),
              transform var(--dur, .3s) var(--ease, ease);
}

.colo-addons-toggle:hover {
  background: rgba(13, 89, 242, 0.28);
  border-color: rgba(72, 214, 255, 0.55);
  transform: translateY(-2px);
}

.colo-addons-toggle-caret {
  font-size: 13px;
  transition: transform var(--dur, .3s) var(--ease, ease);
}

.colo-addons-toggle[aria-expanded="true"] .colo-addons-toggle-caret { transform: rotate(180deg); }

.colo-addons-body[hidden] { display: none; }

.colo-addon-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.colo-addon-table thead th {
  padding: 16px 22px;
  text-align: left;
  font-family: "Space Grotesk", "Exo 2", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(13, 89, 242, 0.16);
}

.colo-ad-th-price, .colo-ad-th-qty { text-align: center; }
.colo-ad-th-act { width: 150px; }

.colo-addon-table tbody td {
  padding: 14px 22px;
  border-top: 1px solid var(--colo-line);
  color: var(--colo-text);
  vertical-align: middle;
}

.colo-addon-table tbody tr:nth-child(odd) td { background: rgba(255, 255, 255, 0.015); }
.colo-addon-table tbody tr:hover td { background: rgba(72, 214, 255, 0.07); }

.colo-ad-name { font-weight: 600; }

.colo-ad-price {
  text-align: center;
  font-weight: 700;
  color: #48D6FF;
  white-space: nowrap;
}

.colo-ad-qty, .colo-ad-act { text-align: center; }

.colo-qty {
  min-width: 64px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid var(--colo-line);
  background: #06234d;
  color: #fff;
  font-size: 13.5px;
  cursor: pointer;
}

.colo-qty:focus { outline: none; border-color: rgba(72, 214, 255, 0.6); }

/* ─────────────────────────────────────────────────────
   3. FEATURES
   ───────────────────────────────────────────────────── */
.colo-features { padding: 80px 0; border-top: 1px solid var(--colo-line); }

.colo-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.colo-section-title {
  font-family: "Space Grotesk", "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--colo-text);
  margin: 0 0 14px;
}

.colo-section-desc {
  color: var(--colo-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.colo-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.colo-feature {
  padding: 30px 24px;
  border: 1px solid var(--colo-line);
  border-radius: 16px;
  background: var(--colo-card);
  transition: transform var(--dur, .3s) var(--ease, ease),
              border-color var(--dur, .3s) var(--ease, ease);
}

.colo-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(72, 214, 255, 0.4);
}

.colo-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent, #0D59F2), var(--cyan, #00C8D4));
  box-shadow: 0 0 20px rgba(13, 89, 242, 0.4);
}

.colo-feature-title {
  font-family: "Space Grotesk", "Exo 2", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--colo-text);
  margin: 0 0 10px;
}

.colo-feature-desc {
  color: var(--colo-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ─────────────────────────────────────────────────────
   4. CTA
   ───────────────────────────────────────────────────── */
.colo-cta { padding: 0 0 96px; }

.colo-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(72, 214, 255, 0.25);
  background:
    radial-gradient(ellipse 60% 120% at 50% 0%, rgba(13, 89, 242, 0.28) 0%, transparent 60%),
    rgba(255, 255, 255, 0.03);
  padding: 64px 32px;
  text-align: center;
}

.colo-cta-glow {
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 212, 0.18) 0%, transparent 65%);
  filter: blur(12px);
  pointer-events: none;
}

.colo-cta-inner { position: relative; z-index: 1; }

.colo-cta-title {
  font-family: "Space Grotesk", "Exo 2", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 700;
  color: var(--colo-text);
  margin: 0 0 14px;
}

.colo-cta-desc {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--colo-muted);
  font-size: 15px;
  line-height: 1.7;
}

.colo-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 10px;
  font-family: "Space Grotesk", "Exo 2", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: #0D59F2;
  box-shadow: 0 0 24px rgba(13, 89, 242, 0.45);
  transition: background var(--dur, .3s) var(--ease, ease),
              transform var(--dur, .3s) var(--ease, ease),
              box-shadow var(--dur, .3s) var(--ease, ease);
}

.colo-cta-btn:hover {
  background: #3D7FFF;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(13, 89, 242, 0.6);
}

/* ─────────────────────────────────────────────────────
   5. RESPONSIVE
   ───────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .colo-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .colo-hero-right { order: -1; }
  .colo-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .colo-tabs { gap: 20px; }
  .colo-feature-grid { grid-template-columns: 1fr; }

  /* comparison table → stacked blocks per plan column */
  .colo-table, .colo-table thead, .colo-table tbody,
  .colo-table tr, .colo-table th, .colo-table td { display: block; width: 100%; }

  .colo-table { table-layout: auto; }
  .colo-table thead { display: none; }

  .colo-table tbody tr {
    border-top: 1px solid var(--colo-line);
    padding: 6px 0;
  }
  .colo-table tbody tr.colo-row-cta { display: flex; flex-wrap: wrap; gap: 10px; padding: 14px 18px; }

  .colo-td-desc {
    font-size: 15px;
    color: #48D6FF !important;
    padding-bottom: 4px;
  }

  .colo-td-val {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    text-align: right !important;
    padding: 8px 18px;
  }
  .colo-td-val::before {
    content: attr(data-label);
    color: var(--colo-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .colo-row-cta .colo-td-val { flex: 1; justify-content: center; }
  .colo-row-cta .colo-td-val::before { content: none; }
  .colo-row-cta .colo-td-desc { display: none; }

  /* add-on table → stacked cards */
  .colo-addon-table, .colo-addon-table tbody,
  .colo-addon-table tr, .colo-addon-table td { display: block; width: 100%; }
  .colo-addon-table thead { display: none; }
  .colo-addon-table tbody tr {
    border-top: 1px solid var(--colo-line);
    padding: 8px 0;
  }
  .colo-addon-table tbody td {
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 18px;
    text-align: right;
  }
  .colo-ad-name { font-size: 15px; }
  .colo-addon-table tbody td::before {
    content: attr(data-label);
    color: var(--colo-muted);
    font-size: 12px;
    font-weight: 600;
  }
}
